From edbdaaed47d6294ace9e8e077dc9d4cc8149b1f4 Mon Sep 17 00:00:00 2001 From: Craig McIntosh Date: Thu, 18 Feb 2021 11:01:54 -0500 Subject: [PATCH 1/6] Update to latest CosmosDB client libraray and allow ServerVersion to be updated for CosmosDB accounts --- src/CosmosDB/CosmosDB/CosmosDB.csproj | 2 +- .../CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs | 4 ---- .../CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs | 4 ++++ .../CosmosDBAccount/UpdateAzCosmosDBAccount.cs | 10 ++++++++++ .../CosmosDB/Models/DatabaseAccount/PSApiProperties.cs | 2 +- 5 files changed, 16 insertions(+), 6 deletions(-) diff --git a/src/CosmosDB/CosmosDB/CosmosDB.csproj b/src/CosmosDB/CosmosDB/CosmosDB.csproj index 20e7b8e40f63..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 dcbd1a9784c9..1c32cb1af9bc 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs @@ -50,10 +50,6 @@ public class NewAzCosmosDBAccount : NewOrUpdateAzCosmosDBAccount [Parameter(Mandatory = false, HelpMessage = Constants.EnableFreeTierHelpMessage)] public bool? EnableFreeTier { get; set; } - [Parameter(Mandatory = false, HelpMessage = Constants.ServerVersionHelpMessage)] - [PSArgumentCompleter(SDKModel.ServerVersion.ThreeFullStopTwo, SDKModel.ServerVersion.ThreeFullStopSix)] - public string ServerVersion { get; set; } - [Parameter(Mandatory = false, HelpMessage = Constants.LocationHelpMessage)] [ValidateNotNullOrEmpty] public string[] Location { get; set; } diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs index 519f1683b7a7..f3111fc8cda5 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs @@ -73,6 +73,10 @@ public class NewOrUpdateAzCosmosDBAccount : AzureCosmosDBCmdletBase [Parameter(Mandatory = false, HelpMessage = Constants.AsJobHelpMessage)] public SwitchParameter AsJob { get; set; } + [Parameter(Mandatory = false, HelpMessage = Constants.ServerVersionHelpMessage)] + [PSArgumentCompleter(SDKModel.ServerVersion.ThreeFullStopTwo, SDKModel.ServerVersion.ThreeFullStopSix)] + public string ServerVersion { 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..a003bcefbce2 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs @@ -134,6 +134,16 @@ public override void ExecuteCmdlet() databaseAccountUpdateParameters.IpRules = base.PopulateIpRules(IpRule); } + if (ServerVersion != null) + { + if (databaseAccountUpdateParameters.ApiProperties == null) + { + databaseAccountUpdateParameters.ApiProperties = new ApiProperties(); + } + + databaseAccountUpdateParameters.ApiProperties.ServerVersion = ServerVersion; + } + if (ShouldProcess(Name, "Updating Database Account")) { DatabaseAccountGetResults cosmosDBAccount = CosmosDBManagementClient.DatabaseAccounts.UpdateWithHttpMessagesAsync(ResourceGroupName, Name, databaseAccountUpdateParameters).GetAwaiter().GetResult().Body; diff --git a/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSApiProperties.cs b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSApiProperties.cs index 7d88a13670ce..6376729f6d40 100644 --- a/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSApiProperties.cs +++ b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSApiProperties.cs @@ -30,7 +30,7 @@ public PSApiProperties(ApiProperties apiProperties) // // Summary: // Gets or sets describes the ServerVersion of an a MongoDB account. Possible values - // include: '3.2', '3.6' + // include: '3.2', '3.6', '4.0' public string ServerVersion { get; set; } } } \ No newline at end of file From 3431f31d8ee59b39f9eb44581f5c31edaee0abd8 Mon Sep 17 00:00:00 2001 From: Craig McIntosh Date: Fri, 19 Feb 2021 16:29:35 -0500 Subject: [PATCH 2/6] Add 4.0 ServerVersion in argument completion --- .../CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs index a5a7a1ba2fdc..16b4ee4127fc 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs @@ -82,7 +82,7 @@ public class NewOrUpdateAzCosmosDBAccount : AzureCosmosDBCmdletBase public string[] NetworkAclBypassResourceId { get; set; } [Parameter(Mandatory = false, HelpMessage = Constants.ServerVersionHelpMessage)] - [PSArgumentCompleter(SDKModel.ServerVersion.ThreeFullStopTwo, SDKModel.ServerVersion.ThreeFullStopSix)] + [PSArgumentCompleter(SDKModel.ServerVersion.ThreeFullStopTwo, SDKModel.ServerVersion.ThreeFullStopSix, SDKModel.ServerVersion.FourFullStopZero)] public string ServerVersion { get; set; } public ConsistencyPolicy PopoulateConsistencyPolicy(string DefaultConsistencyLevel, int? MaxStalenessIntervalInSeconds, int? MaxStalenessPrefix) From a5dc321d35c806aef24a014de08cf14faaf3a2dd Mon Sep 17 00:00:00 2001 From: Craig McIntosh Date: Mon, 22 Feb 2021 10:21:37 -0500 Subject: [PATCH 3/6] Added ServerVersion change description to ChangeLog.md --- src/CosmosDB/CosmosDB/ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CosmosDB/CosmosDB/ChangeLog.md b/src/CosmosDB/CosmosDB/ChangeLog.md index 9acd97ad98e9..c584b02668c1 100644 --- a/src/CosmosDB/CosmosDB/ChangeLog.md +++ b/src/CosmosDB/CosmosDB/ChangeLog.md @@ -20,6 +20,7 @@ ## Upcoming Release * Introduced NetworkAclBypass and NetworkAclBypassResourceIds for Database Account cmdlets. +* Introduced ServerVersion option to Update-AzCosmosDBAccount. ## Version 1.0.0 * General availability of 'Az.CosmosDB' module From a08eff20768026efa6ec8b9c33884e1790efb44b Mon Sep 17 00:00:00 2001 From: Kalyan Khandrika Date: Mon, 22 Feb 2021 14:28:06 -0800 Subject: [PATCH 4/6] Adding backup interval and retention parameters to database account create and update cmdlets --- src/CosmosDB/CosmosDB/ChangeLog.md | 1 + .../CosmosDBAccount/NewAzCosmosDBAccount.cs | 12 ++++ .../NewOrUpdateAzCosmosDBAccount.cs | 6 ++ .../UpdateAzCosmosDBAccount.cs | 20 ++++++ src/CosmosDB/CosmosDB/Helpers/Constants.cs | 3 + .../Models/DatabaseAccount/PSBackupPolicy.cs | 72 +++++++++++++++++++ .../PSDatabaseAccountGetResults.cs | 5 ++ .../CosmosDB/help/New-AzCosmosDBAccount.md | 47 +++++++++--- .../CosmosDB/help/Update-AzCosmosDBAccount.md | 54 +++++++++++++- 9 files changed, 209 insertions(+), 11 deletions(-) create mode 100644 src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSBackupPolicy.cs diff --git a/src/CosmosDB/CosmosDB/ChangeLog.md b/src/CosmosDB/CosmosDB/ChangeLog.md index c584b02668c1..7343e3720c97 100644 --- a/src/CosmosDB/CosmosDB/ChangeLog.md +++ b/src/CosmosDB/CosmosDB/ChangeLog.md @@ -21,6 +21,7 @@ ## Upcoming Release * Introduced NetworkAclBypass and NetworkAclBypassResourceIds for Database Account cmdlets. * Introduced ServerVersion option to Update-AzCosmosDBAccount. +* Introduced BackupInterval and BackupRetention for Database Account cmdlets ## Version 1.0.0 * General availability of 'Az.CosmosDB' module diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs index ca603900a89b..005a53f9929b 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs @@ -211,6 +211,18 @@ public override void ExecuteCmdlet() databaseAccountCreateUpdateParameters.Kind = ApiKind; + if (BackupIntervalInMinutes.HasValue || BackupRetentionIntervalInHours.HasValue) + { + PSBackupPolicy backupPolicy = new PSBackupPolicy() + { + BackupType = PSBackupPolicy.PeriodicModeBackupType, + BackupIntervalInMin = BackupIntervalInMinutes, + BackupRetentionIntervalInHours = BackupRetentionIntervalInHours + }; + + databaseAccountCreateUpdateParameters.BackupPolicy = backupPolicy.ToSDKModel(); + } + if (ShouldProcess(Name, "Creating Database Account")) { DatabaseAccountGetResults cosmosDBAccount = CosmosDBManagementClient.DatabaseAccounts.CreateOrUpdateWithHttpMessagesAsync(ResourceGroupName, Name, databaseAccountCreateUpdateParameters).GetAwaiter().GetResult().Body; diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs index 16b4ee4127fc..e3df45486cb3 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewOrUpdateAzCosmosDBAccount.cs @@ -85,6 +85,12 @@ public class NewOrUpdateAzCosmosDBAccount : AzureCosmosDBCmdletBase [PSArgumentCompleter(SDKModel.ServerVersion.ThreeFullStopTwo, SDKModel.ServerVersion.ThreeFullStopSix, SDKModel.ServerVersion.FourFullStopZero)] public string ServerVersion { get; set; } + [Parameter(Mandatory = false, HelpMessage = Constants.BackupIntervalInMinHelpMessage)] + public int? BackupIntervalInMinutes { get; set; } + + [Parameter(Mandatory = false, HelpMessage = Constants.BackupRetentionInHoursHelpMessage)] + public int? BackupRetentionIntervalInHours { 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 d6b12a7abce2..757337e8d495 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs @@ -156,6 +156,26 @@ public override void ExecuteCmdlet() databaseAccountUpdateParameters.NetworkAclBypassResourceIds = networkAclBypassResourceId; } + if (BackupIntervalInMinutes.HasValue || BackupRetentionIntervalInHours.HasValue) + { + if (readDatabase.BackupPolicy is PeriodicModeBackupPolicy) + { + PSBackupPolicy backupPolicy = new PSBackupPolicy() + { + BackupType = PSBackupPolicy.PeriodicModeBackupType, + BackupIntervalInMin = BackupIntervalInMinutes, + BackupRetentionIntervalInHours = BackupRetentionIntervalInHours + }; + + databaseAccountUpdateParameters.BackupPolicy = backupPolicy.ToSDKModel(); + } + else + { + WriteWarning("Can accept BackupInterval or BackupRetention parameters only for accounts with PeriodicMode backup policy"); + return; + } + } + 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 125bfe37e3c0..16450840f166 100644 --- a/src/CosmosDB/CosmosDB/Helpers/Constants.cs +++ b/src/CosmosDB/CosmosDB/Helpers/Constants.cs @@ -56,6 +56,9 @@ internal static class Constants 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."; + //Backup specific help messages + public const string BackupIntervalInMinHelpMessage = "The interval(in minutes) with which backup are taken (only for accounts with periodic mode backups)"; + public const string BackupRetentionInHoursHelpMessage = "The time(in hours) for which each backup is retained (only for accounts with periodic mode backups)"; //Sql cmdlets help messages public const string DatabaseNameHelpMessage = "Database name."; diff --git a/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSBackupPolicy.cs b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSBackupPolicy.cs new file mode 100644 index 000000000000..2a3858f872b3 --- /dev/null +++ b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSBackupPolicy.cs @@ -0,0 +1,72 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.CosmosDB.Helpers; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.CosmosDB.Models; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.CosmosDB.Models +{ + public class PSBackupPolicy + { + public static readonly string PeriodicModeBackupType = "Periodic"; + + public PSBackupPolicy() + { + } + + public PSBackupPolicy(BackupPolicy backupPolicy) + { + if (backupPolicy is PeriodicModeBackupPolicy) + { + PeriodicModeBackupPolicy periodicModeBackupPolicy = backupPolicy as PeriodicModeBackupPolicy; + BackupIntervalInMin = periodicModeBackupPolicy.PeriodicModeProperties.BackupIntervalInMinutes; + BackupRetentionIntervalInHours = periodicModeBackupPolicy.PeriodicModeProperties.BackupRetentionIntervalInHours; + BackupType = PeriodicModeBackupType; + } + else + { + return; + } + } + + public int? BackupIntervalInMin { get; set; } + + public int? BackupRetentionIntervalInHours { get; set; } + + public string BackupType { get; set; } + + public BackupPolicy ToSDKModel() + { + if (BackupType.Equals(PSBackupPolicy.PeriodicModeBackupType)) + { + PeriodicModeBackupPolicy periodicModeBackupPolicy = new PeriodicModeBackupPolicy + { + PeriodicModeProperties = new PeriodicModeProperties() + { + BackupIntervalInMinutes = BackupIntervalInMin, + BackupRetentionIntervalInHours = BackupRetentionIntervalInHours + } + }; + + return periodicModeBackupPolicy; + } + else + { + return null; + } + } + } +} diff --git a/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSDatabaseAccountGetResults.cs b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSDatabaseAccountGetResults.cs index 804921663808..975bf4a8fd51 100644 --- a/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSDatabaseAccountGetResults.cs +++ b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSDatabaseAccountGetResults.cs @@ -60,6 +60,7 @@ public PSDatabaseAccountGetResults(DatabaseAccountGetResults databaseAccountGetR EnableAnalyticalStorage = databaseAccountGetResults.EnableAnalyticalStorage; NetworkAclBypass = databaseAccountGetResults.NetworkAclBypass; NetworkAclBypassResourceIds = databaseAccountGetResults.NetworkAclBypassResourceIds; + BackupPolicy = new PSBackupPolicy(databaseAccountGetResults.BackupPolicy); } // @@ -190,5 +191,9 @@ public PSDatabaseAccountGetResults(DatabaseAccountGetResults databaseAccountGetR // Summary: // Gets or sets list of Network Acl Bypass Resource Ids. public IList NetworkAclBypassResourceIds { get; set; } + // + // Summary: + // Gets or sets the backup policy of the database account. + public PSBackupPolicy BackupPolicy { get; set; } } } diff --git a/src/CosmosDB/CosmosDB/help/New-AzCosmosDBAccount.md b/src/CosmosDB/CosmosDB/help/New-AzCosmosDBAccount.md index ca79d35f1c59..34145449767f 100644 --- a/src/CosmosDB/CosmosDB/help/New-AzCosmosDBAccount.md +++ b/src/CosmosDB/CosmosDB/help/New-AzCosmosDBAccount.md @@ -14,14 +14,15 @@ Create a new CosmosDB Account. ``` New-AzCosmosDBAccount [-EnableAutomaticFailover] [-EnableMultipleWriteLocations] [-EnableVirtualNetwork] - [-ApiKind ] [-DisableKeyBasedMetadataWriteAccess] [-EnableFreeTier ] - [-ServerVersion ] [-Location ] [-LocationObject ] -ResourceGroupName - -Name [-DefaultConsistencyLevel ] [-IpRule ] - [-MaxStalenessIntervalInSeconds ] [-MaxStalenessPrefix ] [-Tag ] - [-VirtualNetworkRule ] [-VirtualNetworkRuleObject ] - [-PublicNetworkAccess ] [-KeyVaultKeyUri ] [-EnableAnalyticalStorage ] [-AsJob] - [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-ApiKind ] [-DisableKeyBasedMetadataWriteAccess] [-EnableFreeTier ] [-Location ] + [-LocationObject ] -ResourceGroupName -Name + [-DefaultConsistencyLevel ] [-IpRule ] [-MaxStalenessIntervalInSeconds ] + [-MaxStalenessPrefix ] [-Tag ] [-VirtualNetworkRule ] + [-VirtualNetworkRuleObject ] [-PublicNetworkAccess ] + [-KeyVaultKeyUri ] [-EnableAnalyticalStorage ] [-AsJob] [-NetworkAclBypass ] + [-NetworkAclBypassResourceId ] [-ServerVersion ] [-BackupIntervalInMinutes ] + [-BackupRetentionIntervalInHours ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -92,6 +93,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -BackupIntervalInMinutes +The interval(in minutes) with which backup are taken (only for accounts with periodic mode backups) + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BackupRetentionIntervalInHours +The time(in hours) for which each backup is retained (only for accounts with periodic mode backups) + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. diff --git a/src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md b/src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md index 50f993cd1215..f93ec61d17b4 100644 --- a/src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md +++ b/src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md @@ -20,7 +20,8 @@ Update-AzCosmosDBAccount [-EnableAutomaticFailover ] [-EnableMultipleWr [-MaxStalenessIntervalInSeconds ] [-MaxStalenessPrefix ] [-Tag ] [-VirtualNetworkRule ] [-VirtualNetworkRuleObject ] [-PublicNetworkAccess ] [-KeyVaultKeyUri ] [-EnableAnalyticalStorage ] [-AsJob] - [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] + [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] [-ServerVersion ] + [-BackupIntervalInMinutes ] [-BackupRetentionIntervalInHours ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -32,7 +33,8 @@ Update-AzCosmosDBAccount -ResourceId [-EnableAutomaticFailover ] [-MaxStalenessPrefix ] [-Tag ] [-VirtualNetworkRule ] [-VirtualNetworkRuleObject ] [-PublicNetworkAccess ] [-KeyVaultKeyUri ] [-EnableAnalyticalStorage ] [-AsJob] - [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] + [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] [-ServerVersion ] + [-BackupIntervalInMinutes ] [-BackupRetentionIntervalInHours ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -44,7 +46,8 @@ Update-AzCosmosDBAccount -InputObject [-EnableAuto [-MaxStalenessIntervalInSeconds ] [-MaxStalenessPrefix ] [-Tag ] [-VirtualNetworkRule ] [-VirtualNetworkRuleObject ] [-PublicNetworkAccess ] [-KeyVaultKeyUri ] [-EnableAnalyticalStorage ] [-AsJob] - [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] + [-NetworkAclBypass ] [-NetworkAclBypassResourceId ] [-ServerVersion ] + [-BackupIntervalInMinutes ] [-BackupRetentionIntervalInHours ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -99,6 +102,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -BackupIntervalInMinutes +The interval(in minutes) with which backup are taken (only for accounts with periodic mode backups) + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BackupRetentionIntervalInHours +The time(in hours) for which each backup is retained (only for accounts with periodic mode backups) + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. @@ -391,6 +424,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ServerVersion +ServerVersion, valid only in case of MongoDB Accounts. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Tag Hashtable of tags as key-value pairs. Use empty string to clear existing tag. From 4ab6fe3aca8e45b943ed0c64afd864007165a050 Mon Sep 17 00:00:00 2001 From: Kalyan Khandrika Date: Mon, 22 Feb 2021 15:34:00 -0800 Subject: [PATCH 5/6] Regenerating test record with the new parameters --- .../ScenarioTests/AccountTests.ps1 | 14 +- .../TestAccountRelatedCmdlets.json | 730 +++++++++--------- .../CosmosDBAccount/NewAzCosmosDBAccount.cs | 2 +- .../UpdateAzCosmosDBAccount.cs | 2 +- .../Models/DatabaseAccount/PSBackupPolicy.cs | 6 +- 5 files changed, 379 insertions(+), 375 deletions(-) diff --git a/src/CosmosDB/CosmosDB.Test/ScenarioTests/AccountTests.ps1 b/src/CosmosDB/CosmosDB.Test/ScenarioTests/AccountTests.ps1 index f7f67617f2ad..a3d51252110b 100644 --- a/src/CosmosDB/CosmosDB.Test/ScenarioTests/AccountTests.ps1 +++ b/src/CosmosDB/CosmosDB.Test/ScenarioTests/AccountTests.ps1 @@ -14,7 +14,7 @@ function Test-AccountRelatedCmdlets { - $rgName = "CosmosDBResourceGroup89" + $rgName = "CosmosDBResourceGroup91" $location = "East US" $locationlist = "East US", "West US" $locationlist2 = "East US", "UK South", "UK West", "South India" @@ -22,7 +22,7 @@ function Test-AccountRelatedCmdlets $resourceGroup = New-AzResourceGroup -ResourceGroupName $rgName -Location $location - $cosmosDBAccountName = "cosmosdb67" + $cosmosDBAccountName = "cosmosdb678901" #use an existing account with the following information for Account Update Operations $cosmosDBExistingAccountName = "dbaccount30" @@ -34,7 +34,7 @@ function Test-AccountRelatedCmdlets $networkAclBypass = "AzureServices" $networkAclBypassResourceId = "/subscriptions/subId/resourcegroups/rgName/providers/Microsoft.Synapse/workspaces/workspaceName" - $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 + $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 -BackupRetentionIntervalInHours 16 -BackupIntervalInMinutes 480 Assert-AreEqual $cosmosDBAccountName $cosmosDBAccount.Name Assert-AreEqual "BoundedStaleness" $cosmosDBAccount.ConsistencyPolicy.DefaultConsistencyLevel @@ -49,6 +49,8 @@ function Test-AccountRelatedCmdlets Assert-AreEqual $cosmosDBAccount.EnableFreeTier 0 Assert-AreEqual $cosmosDBAccount.NetworkAclBypass $NetworkAclBypass Assert-AreEqual $cosmosDBAccount.NetworkAclBypassResourceIds.Count 0 + Assert-AreEqual $cosmosDBAccount.BackupPolicy.BackupIntervalInMinutes 480 + Assert-AreEqual $cosmosDBAccount.BackupPolicy.BackupRetentionIntervalInHours 16 # create an existing database Try { @@ -58,9 +60,9 @@ 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 -NetworkAclBypass $NetworkAclBypass -NetworkAclBypassResourceId $networkAclBypassResourceId + $updatedCosmosDBAccount = Update-AzCosmosDBAccount -ResourceGroupName $rgName -Name $cosmosDBAccountName -DefaultConsistencyLevel "BoundedStaleness" -MaxStalenessIntervalInSeconds 10 -MaxStalenessPrefix 20 -IpRule $IpRule -Tag $tags -EnableVirtualNetwork 1 -EnableAutomaticFailover 1 -PublicNetworkAccess $publicNetworkAccess -NetworkAclBypass $NetworkAclBypass -NetworkAclBypassResourceId $networkAclBypassResourceId -BackupRetentionIntervalInHours 8 -BackupIntervalInMinutes 240 - Assert-AreEqual $cosmosDBExistingAccountName $updatedCosmosDBAccount.Name + Assert-AreEqual $cosmosDBAccountName $updatedCosmosDBAccount.Name Assert-AreEqual "BoundedStaleness" $updatedCosmosDBAccount.ConsistencyPolicy.DefaultConsistencyLevel Assert-AreEqual 10 $updatedCosmosDBAccount.ConsistencyPolicy.MaxIntervalInSeconds Assert-AreEqual 20 $updatedCosmosDBAccount.ConsistencyPolicy.MaxStalenessPrefix @@ -69,6 +71,8 @@ function Test-AccountRelatedCmdlets Assert-AreEqual $updatedCosmosDBAccount.PublicNetworkAccess $publicNetworkAccess Assert-AreEqual $updatedCosmosDBAccount.NetworkAclBypass $NetworkAclBypass Assert-AreEqual $updatedCosmosDBAccount.NetworkAclBypassResourceIds.Count 1 + Assert-AreEqual $updatedCosmosDBAccount.BackupPolicy.BackupIntervalInMinutes 240 + Assert-AreEqual $updatedCosmosDBAccount.BackupPolicy.BackupRetentionIntervalInHours 8 $cosmosDBAccountKey = Get-AzCosmosDBAccountKey -Name $cosmosDBAccountName -ResourceGroupName $rgname Assert-NotNull $cosmosDBAccountKey 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 fe061050f68c..1d25104d8814 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 @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourcegroups/CosmosDBResourceGroup89?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlZ3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/CosmosDBResourceGroup91?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlZ3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dffe51a8-8eab-41f0-94b3-e66a37c84350" + "354fa8cb-14fa-4e84-a494-6a968e6c610a" ], "Accept-Language": [ "en-US" @@ -15,7 +15,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "f315f66f-f0bc-4fdd-8faa-4b55d070236c" + "8925a61c-2d97-4567-9924-1daacb3aecc2" ], "x-ms-correlation-request-id": [ - "f315f66f-f0bc-4fdd-8faa-4b55d070236c" + "8925a61c-2d97-4567-9924-1daacb3aecc2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203105Z:f315f66f-f0bc-4fdd-8faa-4b55d070236c" + "WESTCENTRALUS:20210222T231732Z:8925a61c-2d97-4567-9924-1daacb3aecc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:31:04 GMT" + "Mon, 22 Feb 2021 23:17:32 GMT" ], "Content-Length": [ "199" @@ -63,17 +63,17 @@ "-1" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91\",\r\n \"name\": \"CosmosDBResourceGroup91\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7a0fb8d-acff-445e-be12-5fa5519a8735" + "b8965d3d-110a-47d7-9ec8-c7e3f6539a7b" ], "Accept-Language": [ "en-US" @@ -81,7 +81,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "31e82357-6185-4674-a13b-9793498c8d3f" + "1976579a-d332-4a2f-a032-bddc0f3bd1fd" ], "x-ms-correlation-request-id": [ - "31e82357-6185-4674-a13b-9793498c8d3f" + "1976579a-d332-4a2f-a032-bddc0f3bd1fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203105Z:31e82357-6185-4674-a13b-9793498c8d3f" + "WESTCENTRALUS:20210222T231733Z:1976579a-d332-4a2f-a032-bddc0f3bd1fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:31:05 GMT" + "Mon, 22 Feb 2021 23:17:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,25 +120,25 @@ "-1" ], "Content-Length": [ - "243" + "247" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DocumentDB/databaseAccounts/cosmosdb67' under resource group 'CosmosDBResourceGroup89' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DocumentDB/databaseAccounts/cosmosdb678901' under resource group 'CosmosDBResourceGroup91' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7a0fb8d-acff-445e-be12-5fa5519a8735" + "b8965d3d-110a-47d7-9ec8-c7e3f6539a7b" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -159,41 +159,41 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "c43df612-5d58-4235-99ee-7492f08774c4" + "86ec07d0-847f-4fe8-994e-4e4f99713543" ], "x-ms-correlation-request-id": [ - "c43df612-5d58-4235-99ee-7492f08774c4" + "86ec07d0-847f-4fe8-994e-4e4f99713543" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203213Z:c43df612-5d58-4235-99ee-7492f08774c4" + "WESTCENTRALUS:20210222T231838Z:86ec07d0-847f-4fe8-994e-4e4f99713543" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:13 GMT" + "Mon, 22 Feb 2021 23:18:38 GMT" ], "Content-Length": [ - "2245" + "2233" ], "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 \"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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901\",\r\n \"name\": \"cosmosdb678901\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-22T23:18:06.0539326Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678901.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\": \"2d52a9e1-0cd0-4fbe-ba8f-a3d15ee1e584\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": 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=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63537bd1-3db0-4846-983f-5ca0734ae333" + "98d42ac8-1c8b-4667-8939-8f4165404f2a" ], "Accept-Language": [ "en-US" @@ -201,7 +201,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -222,41 +222,41 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "2d1bc2a5-2797-4f32-9867-3e5eba95109f" + "3cb6845e-32aa-4e0f-a94d-92cb125f8d47" ], "x-ms-correlation-request-id": [ - "2d1bc2a5-2797-4f32-9867-3e5eba95109f" + "3cb6845e-32aa-4e0f-a94d-92cb125f8d47" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203213Z:2d1bc2a5-2797-4f32-9867-3e5eba95109f" + "WESTCENTRALUS:20210222T231838Z:3cb6845e-32aa-4e0f-a94d-92cb125f8d47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:13 GMT" + "Mon, 22 Feb 2021 23:18:38 GMT" ], "Content-Length": [ - "2245" + "2233" ], "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 \"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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901\",\r\n \"name\": \"cosmosdb678901\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-22T23:18:06.0539326Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678901.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\": \"2d52a9e1-0cd0-4fbe-ba8f-a3d15ee1e584\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": 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=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 \"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}", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7a0fb8d-acff-445e-be12-5fa5519a8735" + "f0e9ae83-e875-44c9-97ac-e7e3dca4dc5a" ], "Accept-Language": [ "en-US" @@ -264,14 +264,8 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1022" ] }, "ResponseHeaders": { @@ -281,15 +275,6 @@ "Pragma": [ "no-cache" ], - "Location": [ - "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": [ - "84c5fe82-0e4d-423a-937d-a4cdd966be6f" - ], - "Azure-AsyncOperation": [ - "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" ], @@ -299,44 +284,47 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "b02c0f1a-91b6-4d87-b15b-92ab7d3efb25" ], "x-ms-correlation-request-id": [ - "f1073fb2-5d63-48a9-a4dd-62193f09ade1" + "b02c0f1a-91b6-4d87-b15b-92ab7d3efb25" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203113Z:f1073fb2-5d63-48a9-a4dd-62193f09ade1" + "WESTCENTRALUS:20210222T231838Z:b02c0f1a-91b6-4d87-b15b-92ab7d3efb25" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:31:12 GMT" + "Mon, 22 Feb 2021 23:18:38 GMT" ], "Content-Length": [ - "1935" + "2233" ], "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 \"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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901\",\r\n \"name\": \"cosmosdb678901\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-22T23:18:06.0539326Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678901.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\": \"2d52a9e1-0cd0-4fbe-ba8f-a3d15ee1e584\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": 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/84c5fe82-0e4d-423a-937d-a4cdd966be6f?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODRjNWZlODItMGU0ZC00MjNhLTkzN2QtYTRjZGQ5NjZiZTZmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7a0fb8d-acff-445e-be12-5fa5519a8735" + "f0e9ae83-e875-44c9-97ac-e7e3dca4dc5a" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -357,47 +345,56 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11991" ], "x-ms-request-id": [ - "1a68a3d0-d585-4f44-920a-e9307500f35b" + "0161886f-b4b1-419f-a10f-3cfd48887ca0" ], "x-ms-correlation-request-id": [ - "1a68a3d0-d585-4f44-920a-e9307500f35b" + "0161886f-b4b1-419f-a10f-3cfd48887ca0" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203143Z:1a68a3d0-d585-4f44-920a-e9307500f35b" + "WESTCENTRALUS:20210222T231912Z:0161886f-b4b1-419f-a10f-3cfd48887ca0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:31:42 GMT" + "Mon, 22 Feb 2021 23:19:11 GMT" ], "Content-Length": [ - "21" + "2329" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901\",\r\n \"name\": \"cosmosdb678901\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-22T23:18:06.0539326Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://cosmosdb678901.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\": \"2d52a9e1-0cd0-4fbe-ba8f-a3d15ee1e584\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-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\": \"cosmosdb678901-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 \"/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/eastus/operationsStatus/84c5fe82-0e4d-423a-937d-a4cdd966be6f?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODRjNWZlODItMGU0ZC00MjNhLTkzN2QtYTRjZGQ5NjZiZTZmP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"kind\": \"MongoDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxStalenessPrefix\": 20,\r\n \"maxIntervalInSeconds\": 10\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"enableAutomaticFailover\": true,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": true,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableFreeTier\": false,\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.2\"\r\n },\r\n \"enableAnalyticalStorage\": false,\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16\r\n }\r\n },\r\n \"networkAclBypass\": \"AzureServices\",\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b7a0fb8d-acff-445e-be12-5fa5519a8735" + "b8965d3d-110a-47d7-9ec8-c7e3f6539a7b" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1211" ] }, "ResponseHeaders": { @@ -407,6 +404,15 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/operationResults/94576f5d-1307-4168-96f0-631e9c2e52b3?api-version=2021-01-15" + ], + "x-ms-request-id": [ + "94576f5d-1307-4168-96f0-631e9c2e52b3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/94576f5d-1307-4168-96f0-631e9c2e52b3?api-version=2021-01-15" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -416,50 +422,44 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "bf992cd2-a9e6-4dcc-8a63-64c70fc90798" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "bf992cd2-a9e6-4dcc-8a63-64c70fc90798" + "dbdee653-05e6-48e5-aaf3-5a26657f654d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203213Z:bf992cd2-a9e6-4dcc-8a63-64c70fc90798" + "WESTCENTRALUS:20210222T231737Z:dbdee653-05e6-48e5-aaf3-5a26657f654d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:13 GMT" + "Mon, 22 Feb 2021 23:17:36 GMT" ], "Content-Length": [ - "22" + "1906" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901\",\r\n \"name\": \"cosmosdb678901\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-22T23:17:35.7840541Z\"\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\": \"2d52a9e1-0cd0-4fbe-ba8f-a3d15ee1e584\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\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\": \"cosmosdb678901-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\": \"cosmosdb678901-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\": \"cosmosdb678901-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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 8,\r\n \"backupStorageRedundancy\": 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/dbaccount30?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/94576f5d-1307-4168-96f0-631e9c2e52b3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTQ1NzZmNWQtMTMwNy00MTY4LTk2ZjAtNjMxZTljMmU1MmIzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc82877-4afe-4019-b8b6-a7e569dc7330" - ], - "Accept-Language": [ - "en-US" + "b8965d3d-110a-47d7-9ec8-c7e3f6539a7b" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -480,46 +480,46 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-request-id": [ - "76d6529b-9b93-4f34-9bec-e38d4cfa09c6" + "6e5e8e5f-7c82-492c-b4fa-1e88a069d5ce" ], "x-ms-correlation-request-id": [ - "76d6529b-9b93-4f34-9bec-e38d4cfa09c6" + "6e5e8e5f-7c82-492c-b4fa-1e88a069d5ce" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203214Z:76d6529b-9b93-4f34-9bec-e38d4cfa09c6" + "WESTCENTRALUS:20210222T231807Z:6e5e8e5f-7c82-492c-b4fa-1e88a069d5ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:14 GMT" + "Mon, 22 Feb 2021 23:18:07 GMT" ], "Content-Length": [ - "2310" + "21" ], "Content-Type": [ "application/json" ] }, - "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}", + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount30?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/94576f5d-1307-4168-96f0-631e9c2e52b3?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTQ1NzZmNWQtMTMwNy00MTY4LTk2ZjAtNjMxZTljMmU1MmIzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc82877-4afe-4019-b8b6-a7e569dc7330" + "b8965d3d-110a-47d7-9ec8-c7e3f6539a7b" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -540,41 +540,41 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-request-id": [ - "8558d06c-6be8-4fdd-95e0-828e6cad3641" + "9a97f5f6-cd64-4b7f-b686-0739ee7eaca2" ], "x-ms-correlation-request-id": [ - "8558d06c-6be8-4fdd-95e0-828e6cad3641" + "9a97f5f6-cd64-4b7f-b686-0739ee7eaca2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203248Z:8558d06c-6be8-4fdd-95e0-828e6cad3641" + "WESTCENTRALUS:20210222T231838Z:9a97f5f6-cd64-4b7f-b686-0739ee7eaca2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:47 GMT" + "Mon, 22 Feb 2021 23:18:37 GMT" ], "Content-Length": [ - "2310" + "22" ], "Content-Type": [ "application/json" ] }, - "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}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup27/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount30?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDMwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"name\": \"test\",\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\"\r\n },\r\n \"location\": \"East US 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}", + "RequestBody": "{\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\r\n },\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"BoundedStaleness\",\r\n \"maxStalenessPrefix\": 20,\r\n \"maxIntervalInSeconds\": 10\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": true,\r\n \"enableAutomaticFailover\": true,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 240,\r\n \"backupRetentionIntervalInHours\": 8\r\n }\r\n },\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": [ - "cfc82877-4afe-4019-b8b6-a7e569dc7330" + "f0e9ae83-e875-44c9-97ac-e7e3dca4dc5a" ], "Accept-Language": [ "en-US" @@ -582,14 +582,14 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "892" + "1076" ] }, "ResponseHeaders": { @@ -600,13 +600,13 @@ "no-cache" ], "Location": [ - "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" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/operationResults/8662a001-5f9d-4ae4-8356-01fd6b26191a?api-version=2021-01-15" ], "x-ms-request-id": [ - "28e4526f-1632-484c-92bd-c548cdb3b8e8" + "8662a001-5f9d-4ae4-8356-01fd6b26191a" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8662a001-5f9d-4ae4-8356-01fd6b26191a?api-version=2021-01-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -621,40 +621,40 @@ "1198" ], "x-ms-correlation-request-id": [ - "a584d9bf-56e2-4be2-9777-17d920bd18e6" + "2574b0de-1e03-440e-aa38-8249912ab63e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203217Z:a584d9bf-56e2-4be2-9777-17d920bd18e6" + "WESTCENTRALUS:20210222T231841Z:2574b0de-1e03-440e-aa38-8249912ab63e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:17 GMT" + "Mon, 22 Feb 2021 23:18:41 GMT" ], "Content-Length": [ - "2306" + "2229" ], "Content-Type": [ "application/json" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901\",\r\n \"name\": \"cosmosdb678901\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {\r\n \"Color\": \"Blue\",\r\n \"Shape\": \"Square\",\r\n \"name\": \"test\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2021-02-22T23:18:06.0539326Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"documentEndpoint\": \"https://cosmosdb678901.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\": \"2d52a9e1-0cd0-4fbe-ba8f-a3d15ee1e584\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\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\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://cosmosdb678901-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Updating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"cosmosdb678901-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [\r\n {\r\n \"ipAddressOrRange\": \"201.168.50.1\"\r\n }\r\n ],\r\n \"backupPolicy\": {\r\n \"type\": \"Periodic\",\r\n \"periodicModeProperties\": {\r\n \"backupIntervalInMinutes\": 480,\r\n \"backupRetentionIntervalInHours\": 16,\r\n \"backupStorageRedundancy\": 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/28e4526f-1632-484c-92bd-c548cdb3b8e8?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zU3RhdHVzLzI4ZTQ1MjZmLTE2MzItNDg0Yy05MmJkLWM1NDhjZGIzYjhlOD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8662a001-5f9d-4ae4-8356-01fd6b26191a?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvODY2MmEwMDEtNWY5ZC00YWU0LTgzNTYtMDFmZDZiMjYxOTFhP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc82877-4afe-4019-b8b6-a7e569dc7330" + "f0e9ae83-e875-44c9-97ac-e7e3dca4dc5a" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -675,22 +675,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "e05b9aab-72d9-4199-967e-53fa669fb333" + "e7f22b30-c76a-4a97-927f-90a3c7d24ccc" ], "x-ms-correlation-request-id": [ - "e05b9aab-72d9-4199-967e-53fa669fb333" + "e7f22b30-c76a-4a97-927f-90a3c7d24ccc" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203247Z:e05b9aab-72d9-4199-967e-53fa669fb333" + "WESTCENTRALUS:20210222T231912Z:e7f22b30-c76a-4a97-927f-90a3c7d24ccc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:47 GMT" + "Mon, 22 Feb 2021 23:19:11 GMT" ], "Content-Length": [ "22" @@ -703,13 +703,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/listKeys?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/listKeys?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70e1251e-b987-4ada-b9db-d88e475ee72f" + "66113208-bfa8-4ad4-8ddc-5e6c930c2701" ], "Accept-Language": [ "en-US" @@ -717,7 +717,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -741,19 +741,19 @@ "1199" ], "x-ms-request-id": [ - "e767e29c-14f6-4aa8-9958-c78278da7044" + "27523bad-12dc-4f1c-ba8a-14f4d1eee8c1" ], "x-ms-correlation-request-id": [ - "e767e29c-14f6-4aa8-9958-c78278da7044" + "27523bad-12dc-4f1c-ba8a-14f4d1eee8c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203248Z:e767e29c-14f6-4aa8-9958-c78278da7044" + "WESTCENTRALUS:20210222T231912Z:27523bad-12dc-4f1c-ba8a-14f4d1eee8c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:47 GMT" + "Mon, 22 Feb 2021 23:19:11 GMT" ], "Content-Length": [ "461" @@ -762,17 +762,17 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryMasterKey\": \"eEe9d4fbKlKr9L41rpM9wS8h10WDc8oyU8pez2ntu0Pv0iJ5xSaQmskFYpAZ9dgbSBAJTvtfogFWSRvDd1WSaA==\",\r\n \"secondaryMasterKey\": \"2u3G72wiGbq9xEoKKCgh3BRUIsgVC3mrCT0l77XMtzh11epMlQY83J1I1us14DvtOyV64H4estww963MqhdQKA==\",\r\n \"primaryReadonlyMasterKey\": \"F2kGfHbX0yhQifCJyfWhrbtVxmGigALDYnb2co9caFwCuaOeeZYPpboxWXubORkBfMgsOMWTsq3uFhJcRlPcbA==\",\r\n \"secondaryReadonlyMasterKey\": \"WEYKavt1N8Tx9PWKHxjq67u7gd7FvtDk7plrCfj4zld9lguIv8m5ZkZuX3pBCkVvc2FGZKFeJXIetcUxs2U4mg==\"\r\n}", + "ResponseBody": "{\r\n \"primaryMasterKey\": \"k8VLd1qbxMXK2uZDRn3vFL8XkwGYLqVwT3XX3VksyXCZoj4t8H8EWJQxWRQIPXb9LfnPe2KwIEJqBxATVlsk7g==\",\r\n \"secondaryMasterKey\": \"1wtwWkHuHEZ9mIgf5ghW9SXd1RREwZrlCvVeeoWL5kGIjM0LPmTlbqeXODwc0KgsaP03m7jNADPk4QIYXXNp5Q==\",\r\n \"primaryReadonlyMasterKey\": \"mkufBW2hSgLd4aJ7v2EBaqUiYbF7NCVJAh2SHVeDlRamaZJRHLIfv23mVK5wj6rL49B4K0y3KqhohbjN8LzvFg==\",\r\n \"secondaryReadonlyMasterKey\": \"zGY1L8BZq9BpNlJNAn9xDX13ZtbEhpONHnACcLXA5wjAT4kOIYKouqfyu9PiLzph9iaUIBhWE3vZ6H5A4YsOzA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/listKeys?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/listKeys?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07e2ad93-dbbb-4b41-9521-37158e9a9f80" + "126e77bb-709b-4ba2-8d5b-20b2cd0d1dd2" ], "Accept-Language": [ "en-US" @@ -780,7 +780,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -804,19 +804,19 @@ "1195" ], "x-ms-request-id": [ - "5a37b0ea-c266-481c-ae25-44f49610e3db" + "fcf76666-4cc9-45e8-8ad4-69e7a20c6104" ], "x-ms-correlation-request-id": [ - "5a37b0ea-c266-481c-ae25-44f49610e3db" + "fcf76666-4cc9-45e8-8ad4-69e7a20c6104" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203321Z:5a37b0ea-c266-481c-ae25-44f49610e3db" + "WESTCENTRALUS:20210222T231945Z:fcf76666-4cc9-45e8-8ad4-69e7a20c6104" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:33:20 GMT" + "Mon, 22 Feb 2021 23:19:45 GMT" ], "Content-Length": [ "461" @@ -825,17 +825,17 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryMasterKey\": \"E5jYTL5tZs9Jga69Lgr3BzIVkutQwslxIoWKSDZ37HUbv5glJ6nPuWVVMQLN0VWphgeLdIJEqlXjm0Re3ADcqg==\",\r\n \"secondaryMasterKey\": \"2u3G72wiGbq9xEoKKCgh3BRUIsgVC3mrCT0l77XMtzh11epMlQY83J1I1us14DvtOyV64H4estww963MqhdQKA==\",\r\n \"primaryReadonlyMasterKey\": \"F2kGfHbX0yhQifCJyfWhrbtVxmGigALDYnb2co9caFwCuaOeeZYPpboxWXubORkBfMgsOMWTsq3uFhJcRlPcbA==\",\r\n \"secondaryReadonlyMasterKey\": \"WEYKavt1N8Tx9PWKHxjq67u7gd7FvtDk7plrCfj4zld9lguIv8m5ZkZuX3pBCkVvc2FGZKFeJXIetcUxs2U4mg==\"\r\n}", + "ResponseBody": "{\r\n \"primaryMasterKey\": \"1KpdXybVC9mjBGoh1gRxGHgPh6xuXwoFUrMwsIKD7lwCDxl5kjrwBwgRopORrGELPL71z99qwqIDfU9IlcxF9g==\",\r\n \"secondaryMasterKey\": \"1wtwWkHuHEZ9mIgf5ghW9SXd1RREwZrlCvVeeoWL5kGIjM0LPmTlbqeXODwc0KgsaP03m7jNADPk4QIYXXNp5Q==\",\r\n \"primaryReadonlyMasterKey\": \"mkufBW2hSgLd4aJ7v2EBaqUiYbF7NCVJAh2SHVeDlRamaZJRHLIfv23mVK5wj6rL49B4K0y3KqhohbjN8LzvFg==\",\r\n \"secondaryReadonlyMasterKey\": \"zGY1L8BZq9BpNlJNAn9xDX13ZtbEhpONHnACcLXA5wjAT4kOIYKouqfyu9PiLzph9iaUIBhWE3vZ6H5A4YsOzA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/listConnectionStrings?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvbGlzdENvbm5lY3Rpb25TdHJpbmdzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/listConnectionStrings?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxL2xpc3RDb25uZWN0aW9uU3RyaW5ncz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb5fcf0-6478-4b6d-8518-1c6338caa258" + "39bf46b3-e5b7-44fb-b0f2-f45178db2f27" ], "Accept-Language": [ "en-US" @@ -843,7 +843,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -867,38 +867,38 @@ "1198" ], "x-ms-request-id": [ - "9b29d39a-ed43-4fdd-8346-f4e706aed7ed" + "ad85643e-0e65-43f8-adf3-2fcd8eaaa860" ], "x-ms-correlation-request-id": [ - "9b29d39a-ed43-4fdd-8346-f4e706aed7ed" + "ad85643e-0e65-43f8-adf3-2fcd8eaaa860" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203248Z:9b29d39a-ed43-4fdd-8346-f4e706aed7ed" + "WESTCENTRALUS:20210222T231913Z:ad85643e-0e65-43f8-adf3-2fcd8eaaa860" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:48 GMT" + "Mon, 22 Feb 2021 23:19:12 GMT" ], "Content-Length": [ - "1047" + "1079" ], "Content-Type": [ "application/json" ] }, - "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}", + "ResponseBody": "{\r\n \"connectionStrings\": [\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb678901:k8VLd1qbxMXK2uZDRn3vFL8XkwGYLqVwT3XX3VksyXCZoj4t8H8EWJQxWRQIPXb9LfnPe2KwIEJqBxATVlsk7g==@cosmosdb678901.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Primary MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb678901:1wtwWkHuHEZ9mIgf5ghW9SXd1RREwZrlCvVeeoWL5kGIjM0LPmTlbqeXODwc0KgsaP03m7jNADPk4QIYXXNp5Q==@cosmosdb678901.documents.azure.com:10255/?ssl=true&replicaSet=globaldb\",\r\n \"description\": \"Secondary MongoDB Connection String\"\r\n },\r\n {\r\n \"connectionString\": \"mongodb://cosmosdb678901:mkufBW2hSgLd4aJ7v2EBaqUiYbF7NCVJAh2SHVeDlRamaZJRHLIfv23mVK5wj6rL49B4K0y3KqhohbjN8LzvFg==@cosmosdb678901.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://cosmosdb678901:zGY1L8BZq9BpNlJNAn9xDX13ZtbEhpONHnACcLXA5wjAT4kOIYKouqfyu9PiLzph9iaUIBhWE3vZ6H5A4YsOzA==@cosmosdb678901.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=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvcmVhZG9ubHlrZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/readonlykeys?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxL3JlYWRvbmx5a2V5cz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5f5741f-47f3-46a2-8d83-5e6679491939" + "ddbcc8c4-5e5d-404f-96af-31cc8a3cbc7d" ], "Accept-Language": [ "en-US" @@ -906,7 +906,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -930,19 +930,19 @@ "1197" ], "x-ms-request-id": [ - "6408df58-5241-4f13-a833-3bd567db2af0" + "27d85201-3d0e-4fb6-a5d3-ce9d8a43a39a" ], "x-ms-correlation-request-id": [ - "6408df58-5241-4f13-a833-3bd567db2af0" + "27d85201-3d0e-4fb6-a5d3-ce9d8a43a39a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203249Z:6408df58-5241-4f13-a833-3bd567db2af0" + "WESTCENTRALUS:20210222T231913Z:27d85201-3d0e-4fb6-a5d3-ce9d8a43a39a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:48 GMT" + "Mon, 22 Feb 2021 23:19:12 GMT" ], "Content-Length": [ "239" @@ -951,17 +951,17 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"primaryReadonlyMasterKey\": \"F2kGfHbX0yhQifCJyfWhrbtVxmGigALDYnb2co9caFwCuaOeeZYPpboxWXubORkBfMgsOMWTsq3uFhJcRlPcbA==\",\r\n \"secondaryReadonlyMasterKey\": \"WEYKavt1N8Tx9PWKHxjq67u7gd7FvtDk7plrCfj4zld9lguIv8m5ZkZuX3pBCkVvc2FGZKFeJXIetcUxs2U4mg==\"\r\n}", + "ResponseBody": "{\r\n \"primaryReadonlyMasterKey\": \"mkufBW2hSgLd4aJ7v2EBaqUiYbF7NCVJAh2SHVeDlRamaZJRHLIfv23mVK5wj6rL49B4K0y3KqhohbjN8LzvFg==\",\r\n \"secondaryReadonlyMasterKey\": \"zGY1L8BZq9BpNlJNAn9xDX13ZtbEhpONHnACcLXA5wjAT4kOIYKouqfyu9PiLzph9iaUIBhWE3vZ6H5A4YsOzA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67/regenerateKey?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjcvcmVnZW5lcmF0ZUtleT9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/regenerateKey?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxL3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyKind\": \"primary\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "07e2ad93-dbbb-4b41-9521-37158e9a9f80" + "126e77bb-709b-4ba2-8d5b-20b2cd0d1dd2" ], "Accept-Language": [ "en-US" @@ -969,7 +969,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ], "Content-Type": [ @@ -987,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/4b294b57-c5bf-42fa-8cd5-34a3fba937d1?api-version=2021-01-15" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/regenerateKey/operationResults/98fdb56d-5ebe-4dc9-a2fe-15e184f8323b?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/98fdb56d-5ebe-4dc9-a2fe-15e184f8323b?api-version=2021-01-15" ], "x-ms-request-id": [ - "4b294b57-c5bf-42fa-8cd5-34a3fba937d1" + "98fdb56d-5ebe-4dc9-a2fe-15e184f8323b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,16 +1008,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "d711e5d6-f3df-46d3-ac87-0abd0503e170" + "ebcf7997-d6ba-436c-a892-a840ffd74ce4" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203250Z:d711e5d6-f3df-46d3-ac87-0abd0503e170" + "WESTCENTRALUS:20210222T231914Z:ebcf7997-d6ba-436c-a892-a840ffd74ce4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:32:49 GMT" + "Mon, 22 Feb 2021 23:19:13 GMT" ], "Content-Length": [ "21" @@ -1030,18 +1030,18 @@ "StatusCode": 202 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/98fdb56d-5ebe-4dc9-a2fe-15e184f8323b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOThmZGI1NmQtNWViZS00ZGM5LWEyZmUtMTVlMTg0ZjgzMjNiP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07e2ad93-dbbb-4b41-9521-37158e9a9f80" + "126e77bb-709b-4ba2-8d5b-20b2cd0d1dd2" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1062,22 +1062,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-request-id": [ - "036120a7-08c1-42d4-9774-ff5bc19591a6" + "bd81c1b5-18dd-4fc8-a966-47e275a6028a" ], "x-ms-correlation-request-id": [ - "036120a7-08c1-42d4-9774-ff5bc19591a6" + "bd81c1b5-18dd-4fc8-a966-47e275a6028a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203321Z:036120a7-08c1-42d4-9774-ff5bc19591a6" + "WESTCENTRALUS:20210222T231944Z:bd81c1b5-18dd-4fc8-a966-47e275a6028a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:33:20 GMT" + "Mon, 22 Feb 2021 23:19:44 GMT" ], "Content-Length": [ "22" @@ -1090,18 +1090,18 @@ "StatusCode": 200 }, { - "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", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901/regenerateKey/operationResults/98fdb56d-5ebe-4dc9-a2fe-15e184f8323b?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxL3JlZ2VuZXJhdGVLZXkvb3BlcmF0aW9uUmVzdWx0cy85OGZkYjU2ZC01ZWJlLTRkYzktYTJmZS0xNWUxODRmODMyM2I/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07e2ad93-dbbb-4b41-9521-37158e9a9f80" + "126e77bb-709b-4ba2-8d5b-20b2cd0d1dd2" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1122,22 +1122,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-request-id": [ - "88cd9b6e-5e58-424e-8ffb-25db05a1f8bc" + "7518a344-7019-435f-894f-a262e4fa3480" ], "x-ms-correlation-request-id": [ - "88cd9b6e-5e58-424e-8ffb-25db05a1f8bc" + "7518a344-7019-435f-894f-a262e4fa3480" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203321Z:88cd9b6e-5e58-424e-8ffb-25db05a1f8bc" + "WESTCENTRALUS:20210222T231944Z:7518a344-7019-435f-894f-a262e4fa3480" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:33:20 GMT" + "Mon, 22 Feb 2021 23:19:44 GMT" ], "Content-Length": [ "22" @@ -1150,13 +1150,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/CosmosDBResourceGroup89/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb67?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTIwNTNiOGYtY2FiNS00ZjVjLTljMWEtODcwNTgwMTQyYWJkL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup91/providers/Microsoft.DocumentDB/databaseAccounts/cosmosdb678901?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2Nvc21vc2RiNjc4OTAxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "Accept-Language": [ "en-US" @@ -1164,7 +1164,7 @@ "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1176,13 +1176,13 @@ "no-cache" ], "Location": [ - "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" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationResults/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15" ], "Azure-AsyncOperation": [ - "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" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15" ], "x-ms-request-id": [ - "ac337f03-f678-4c1a-8c31-edd81bbe0fbe" + "45083467-1340-4442-ad6a-cd75ed6e0464" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1197,16 +1197,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "f4473f58-991a-4af0-b920-a0c8ffbdbedf" + "bdffd068-f80d-4eeb-ab19-40a9887feea9" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203323Z:f4473f58-991a-4af0-b920-a0c8ffbdbedf" + "WESTCENTRALUS:20210222T231946Z:bdffd068-f80d-4eeb-ab19-40a9887feea9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:33:22 GMT" + "Mon, 22 Feb 2021 23:19:46 GMT" ], "Content-Length": [ "21" @@ -1219,18 +1219,18 @@ "StatusCode": 202 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1251,22 +1251,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-request-id": [ - "d0153cd5-d474-4a50-9961-8ecf7f2e235b" + "f27f31ed-964c-485f-b9cc-fcd4f276ea84" ], "x-ms-correlation-request-id": [ - "d0153cd5-d474-4a50-9961-8ecf7f2e235b" + "f27f31ed-964c-485f-b9cc-fcd4f276ea84" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203353Z:d0153cd5-d474-4a50-9961-8ecf7f2e235b" + "WESTCENTRALUS:20210222T232016Z:f27f31ed-964c-485f-b9cc-fcd4f276ea84" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:33:52 GMT" + "Mon, 22 Feb 2021 23:20:16 GMT" ], "Content-Length": [ "21" @@ -1279,18 +1279,18 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1311,22 +1311,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-request-id": [ - "23c5953e-64a6-4c64-b98b-a72b785bee86" + "c7074ce9-50dc-479b-b9f7-3d091eb713c7" ], "x-ms-correlation-request-id": [ - "23c5953e-64a6-4c64-b98b-a72b785bee86" + "c7074ce9-50dc-479b-b9f7-3d091eb713c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203423Z:23c5953e-64a6-4c64-b98b-a72b785bee86" + "WESTCENTRALUS:20210222T232046Z:c7074ce9-50dc-479b-b9f7-3d091eb713c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:34:23 GMT" + "Mon, 22 Feb 2021 23:20:46 GMT" ], "Content-Length": [ "21" @@ -1339,18 +1339,18 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1371,22 +1371,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-request-id": [ - "c5be7736-58cf-42c6-ac92-e86386a65c27" + "af31f716-0be1-40fc-8b8c-5ab144dbc492" ], "x-ms-correlation-request-id": [ - "c5be7736-58cf-42c6-ac92-e86386a65c27" + "af31f716-0be1-40fc-8b8c-5ab144dbc492" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203453Z:c5be7736-58cf-42c6-ac92-e86386a65c27" + "WESTCENTRALUS:20210222T232116Z:af31f716-0be1-40fc-8b8c-5ab144dbc492" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:34:53 GMT" + "Mon, 22 Feb 2021 23:21:16 GMT" ], "Content-Length": [ "21" @@ -1399,18 +1399,18 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1431,22 +1431,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-request-id": [ - "f8f76093-6710-42a7-8f53-6d6a866e47b6" + "2efdb92b-1286-406a-b04f-cc48f07a02af" ], "x-ms-correlation-request-id": [ - "f8f76093-6710-42a7-8f53-6d6a866e47b6" + "2efdb92b-1286-406a-b04f-cc48f07a02af" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203523Z:f8f76093-6710-42a7-8f53-6d6a866e47b6" + "WESTCENTRALUS:20210222T232146Z:2efdb92b-1286-406a-b04f-cc48f07a02af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:35:23 GMT" + "Mon, 22 Feb 2021 23:21:46 GMT" ], "Content-Length": [ "21" @@ -1459,18 +1459,18 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1491,22 +1491,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-request-id": [ - "07450f59-3bac-4404-98ec-cbbbd36fe27d" + "a60abc58-5f2e-41e8-9bed-925f8a7283a9" ], "x-ms-correlation-request-id": [ - "07450f59-3bac-4404-98ec-cbbbd36fe27d" + "a60abc58-5f2e-41e8-9bed-925f8a7283a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203554Z:07450f59-3bac-4404-98ec-cbbbd36fe27d" + "WESTCENTRALUS:20210222T232217Z:a60abc58-5f2e-41e8-9bed-925f8a7283a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:35:53 GMT" + "Mon, 22 Feb 2021 23:22:17 GMT" ], "Content-Length": [ "21" @@ -1519,18 +1519,18 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1551,22 +1551,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11983" ], "x-ms-request-id": [ - "63cefe82-7430-46e9-8c13-d6339a68dae1" + "f142640b-4a57-46d1-b6aa-866982e7f483" ], "x-ms-correlation-request-id": [ - "63cefe82-7430-46e9-8c13-d6339a68dae1" + "f142640b-4a57-46d1-b6aa-866982e7f483" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203624Z:63cefe82-7430-46e9-8c13-d6339a68dae1" + "WESTCENTRALUS:20210222T232247Z:f142640b-4a57-46d1-b6aa-866982e7f483" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:36:23 GMT" + "Mon, 22 Feb 2021 23:22:47 GMT" ], "Content-Length": [ "21" @@ -1579,18 +1579,18 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1611,22 +1611,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11982" ], "x-ms-request-id": [ - "14fc2b20-7114-46fe-b683-e3d46a4bac3a" + "d7969bc0-fc5f-490a-ab53-1a5a3907a10a" ], "x-ms-correlation-request-id": [ - "14fc2b20-7114-46fe-b683-e3d46a4bac3a" + "d7969bc0-fc5f-490a-ab53-1a5a3907a10a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203654Z:14fc2b20-7114-46fe-b683-e3d46a4bac3a" + "WESTCENTRALUS:20210222T232317Z:d7969bc0-fc5f-490a-ab53-1a5a3907a10a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:36:54 GMT" + "Mon, 22 Feb 2021 23:23:17 GMT" ], "Content-Length": [ "21" @@ -1639,18 +1639,18 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1671,22 +1671,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11981" ], "x-ms-request-id": [ - "fbe934aa-49ed-454d-8a30-33ea04261eb8" + "677f4e71-5a79-455d-bdb4-62033ad06037" ], "x-ms-correlation-request-id": [ - "fbe934aa-49ed-454d-8a30-33ea04261eb8" + "677f4e71-5a79-455d-bdb4-62033ad06037" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203724Z:fbe934aa-49ed-454d-8a30-33ea04261eb8" + "WESTCENTRALUS:20210222T232347Z:677f4e71-5a79-455d-bdb4-62033ad06037" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:37:23 GMT" + "Mon, 22 Feb 2021 23:23:46 GMT" ], "Content-Length": [ "21" @@ -1699,18 +1699,18 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1731,22 +1731,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11980" ], "x-ms-request-id": [ - "2bf86005-cf75-4aee-92d9-725a44ae9a75" + "3d523d12-f3b6-4868-8165-4a9373741911" ], "x-ms-correlation-request-id": [ - "2bf86005-cf75-4aee-92d9-725a44ae9a75" + "3d523d12-f3b6-4868-8165-4a9373741911" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203754Z:2bf86005-cf75-4aee-92d9-725a44ae9a75" + "WESTCENTRALUS:20210222T232418Z:3d523d12-f3b6-4868-8165-4a9373741911" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:37:54 GMT" + "Mon, 22 Feb 2021 23:24:17 GMT" ], "Content-Length": [ "21" @@ -1759,18 +1759,18 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1791,22 +1791,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11979" ], "x-ms-request-id": [ - "47e4fc6d-19d8-421f-b6a4-057e6298d15e" + "00e43b6b-30b0-4ae0-830a-8724c9a88cfe" ], "x-ms-correlation-request-id": [ - "47e4fc6d-19d8-421f-b6a4-057e6298d15e" + "00e43b6b-30b0-4ae0-830a-8724c9a88cfe" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203824Z:47e4fc6d-19d8-421f-b6a4-057e6298d15e" + "WESTCENTRALUS:20210222T232448Z:00e43b6b-30b0-4ae0-830a-8724c9a88cfe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:38:24 GMT" + "Mon, 22 Feb 2021 23:24:48 GMT" ], "Content-Length": [ "21" @@ -1819,18 +1819,18 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1851,22 +1851,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11978" ], "x-ms-request-id": [ - "ce95003e-c9c4-4d09-9a48-d861de9f43a7" + "cc3e95b9-9330-4cdd-85b7-3e97afacb899" ], "x-ms-correlation-request-id": [ - "ce95003e-c9c4-4d09-9a48-d861de9f43a7" + "cc3e95b9-9330-4cdd-85b7-3e97afacb899" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203855Z:ce95003e-c9c4-4d09-9a48-d861de9f43a7" + "WESTCENTRALUS:20210222T232518Z:cc3e95b9-9330-4cdd-85b7-3e97afacb899" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:38:54 GMT" + "Mon, 22 Feb 2021 23:25:18 GMT" ], "Content-Length": [ "21" @@ -1879,18 +1879,18 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1911,22 +1911,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11977" ], "x-ms-request-id": [ - "f781b2c0-4136-40f7-bd76-66cc465e5194" + "c62278e6-d851-4af3-883d-355a8e21b37e" ], "x-ms-correlation-request-id": [ - "f781b2c0-4136-40f7-bd76-66cc465e5194" + "c62278e6-d851-4af3-883d-355a8e21b37e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203925Z:f781b2c0-4136-40f7-bd76-66cc465e5194" + "WESTCENTRALUS:20210222T232548Z:c62278e6-d851-4af3-883d-355a8e21b37e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:39:24 GMT" + "Mon, 22 Feb 2021 23:25:48 GMT" ], "Content-Length": [ "21" @@ -1939,18 +1939,18 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -1971,22 +1971,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11976" ], "x-ms-request-id": [ - "8ec995c9-5ffe-4573-b24e-5ff69168a9aa" + "d216a180-611f-40d2-a70b-062ec2b351ad" ], "x-ms-correlation-request-id": [ - "8ec995c9-5ffe-4573-b24e-5ff69168a9aa" + "d216a180-611f-40d2-a70b-062ec2b351ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T203955Z:8ec995c9-5ffe-4573-b24e-5ff69168a9aa" + "WESTCENTRALUS:20210222T232618Z:d216a180-611f-40d2-a70b-062ec2b351ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:39:55 GMT" + "Mon, 22 Feb 2021 23:26:18 GMT" ], "Content-Length": [ "21" @@ -1999,18 +1999,18 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -2031,22 +2031,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11975" ], "x-ms-request-id": [ - "bac4b008-32fa-463b-bede-56fbecb9b53f" + "8cb33259-24de-4567-8268-df0d3c983560" ], "x-ms-correlation-request-id": [ - "bac4b008-32fa-463b-bede-56fbecb9b53f" + "8cb33259-24de-4567-8268-df0d3c983560" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T204026Z:bac4b008-32fa-463b-bede-56fbecb9b53f" + "WESTCENTRALUS:20210222T232648Z:8cb33259-24de-4567-8268-df0d3c983560" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:40:25 GMT" + "Mon, 22 Feb 2021 23:26:48 GMT" ], "Content-Length": [ "21" @@ -2059,18 +2059,18 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -2091,22 +2091,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11974" ], "x-ms-request-id": [ - "8d01fcca-59bf-4fe5-b18c-b68692ecc63c" + "d6c3f351-cdeb-43c6-9798-afeb9579e508" ], "x-ms-correlation-request-id": [ - "8d01fcca-59bf-4fe5-b18c-b68692ecc63c" + "d6c3f351-cdeb-43c6-9798-afeb9579e508" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T204056Z:8d01fcca-59bf-4fe5-b18c-b68692ecc63c" + "WESTCENTRALUS:20210222T232719Z:d6c3f351-cdeb-43c6-9798-afeb9579e508" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:40:55 GMT" + "Mon, 22 Feb 2021 23:27:18 GMT" ], "Content-Length": [ "22" @@ -2119,18 +2119,18 @@ "StatusCode": 200 }, { - "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=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationResults/45083467-1340-4442-ad6a-cd75ed6e0464?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvblJlc3VsdHMvNDUwODM0NjctMTM0MC00NDQyLWFkNmEtY2Q3NWVkNmUwNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "User-Agent": [ "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/2.0.0.0" ] }, @@ -2145,28 +2145,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "2a7aec92-455c-4441-9b76-0690aebe67d9" + "98f73d4a-107a-4450-b9e6-7c47b850c773" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11973" ], "x-ms-request-id": [ - "2230b7c0-9702-429b-92b6-46d9889f6482" + "07b3ddb6-8d70-4730-a8fa-5cef2b6b4974" ], "x-ms-correlation-request-id": [ - "2230b7c0-9702-429b-92b6-46d9889f6482" + "07b3ddb6-8d70-4730-a8fa-5cef2b6b4974" ], "x-ms-routing-request-id": [ - "WESTUS2:20210216T204056Z:2230b7c0-9702-429b-92b6-46d9889f6482" + "WESTCENTRALUS:20210222T232719Z:07b3ddb6-8d70-4730-a8fa-5cef2b6b4974" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 16 Feb 2021 20:40:55 GMT" + "Mon, 22 Feb 2021 23:27:18 GMT" ], "Content-Length": [ "0" @@ -2178,6 +2178,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "12053b8f-cab5-4f5c-9c1a-870580142abd" + "SubscriptionId": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" } } \ No newline at end of file diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs index 005a53f9929b..89e65cac38a1 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs @@ -216,7 +216,7 @@ public override void ExecuteCmdlet() PSBackupPolicy backupPolicy = new PSBackupPolicy() { BackupType = PSBackupPolicy.PeriodicModeBackupType, - BackupIntervalInMin = BackupIntervalInMinutes, + BackupIntervalInMinutes = BackupIntervalInMinutes, BackupRetentionIntervalInHours = BackupRetentionIntervalInHours }; diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs index 757337e8d495..00feaa6edfeb 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs @@ -163,7 +163,7 @@ public override void ExecuteCmdlet() PSBackupPolicy backupPolicy = new PSBackupPolicy() { BackupType = PSBackupPolicy.PeriodicModeBackupType, - BackupIntervalInMin = BackupIntervalInMinutes, + BackupIntervalInMinutes = BackupIntervalInMinutes, BackupRetentionIntervalInHours = BackupRetentionIntervalInHours }; diff --git a/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSBackupPolicy.cs b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSBackupPolicy.cs index 2a3858f872b3..c5ea65362a17 100644 --- a/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSBackupPolicy.cs +++ b/src/CosmosDB/CosmosDB/Models/DatabaseAccount/PSBackupPolicy.cs @@ -32,7 +32,7 @@ public PSBackupPolicy(BackupPolicy backupPolicy) if (backupPolicy is PeriodicModeBackupPolicy) { PeriodicModeBackupPolicy periodicModeBackupPolicy = backupPolicy as PeriodicModeBackupPolicy; - BackupIntervalInMin = periodicModeBackupPolicy.PeriodicModeProperties.BackupIntervalInMinutes; + BackupIntervalInMinutes = periodicModeBackupPolicy.PeriodicModeProperties.BackupIntervalInMinutes; BackupRetentionIntervalInHours = periodicModeBackupPolicy.PeriodicModeProperties.BackupRetentionIntervalInHours; BackupType = PeriodicModeBackupType; } @@ -42,7 +42,7 @@ public PSBackupPolicy(BackupPolicy backupPolicy) } } - public int? BackupIntervalInMin { get; set; } + public int? BackupIntervalInMinutes { get; set; } public int? BackupRetentionIntervalInHours { get; set; } @@ -56,7 +56,7 @@ public BackupPolicy ToSDKModel() { PeriodicModeProperties = new PeriodicModeProperties() { - BackupIntervalInMinutes = BackupIntervalInMin, + BackupIntervalInMinutes = BackupIntervalInMinutes, BackupRetentionIntervalInHours = BackupRetentionIntervalInHours } }; From 44cd278f43bc15e1a485961804e76d061722aca0 Mon Sep 17 00:00:00 2001 From: Kalyan Khandrika Date: Mon, 22 Feb 2021 16:04:21 -0800 Subject: [PATCH 6/6] PR feedback --- src/CosmosDB/CosmosDB/ChangeLog.md | 2 +- .../CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs | 12 ++++++------ .../CosmosDBAccount/UpdateAzCosmosDBAccount.cs | 12 ++++++------ 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/CosmosDB/CosmosDB/ChangeLog.md b/src/CosmosDB/CosmosDB/ChangeLog.md index 7343e3720c97..c08ad28fdad9 100644 --- a/src/CosmosDB/CosmosDB/ChangeLog.md +++ b/src/CosmosDB/CosmosDB/ChangeLog.md @@ -20,7 +20,7 @@ ## Upcoming Release * Introduced NetworkAclBypass and NetworkAclBypassResourceIds for Database Account cmdlets. -* Introduced ServerVersion option to Update-AzCosmosDBAccount. +* Introduced ServerVersion parameter to Update-AzCosmosDBAccount. * Introduced BackupInterval and BackupRetention for Database Account cmdlets ## Version 1.0.0 diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs index 89e65cac38a1..2b066bcbd764 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/NewAzCosmosDBAccount.cs @@ -213,14 +213,14 @@ public override void ExecuteCmdlet() if (BackupIntervalInMinutes.HasValue || BackupRetentionIntervalInHours.HasValue) { - PSBackupPolicy backupPolicy = new PSBackupPolicy() + databaseAccountCreateUpdateParameters.BackupPolicy = new PeriodicModeBackupPolicy() { - BackupType = PSBackupPolicy.PeriodicModeBackupType, - BackupIntervalInMinutes = BackupIntervalInMinutes, - BackupRetentionIntervalInHours = BackupRetentionIntervalInHours + PeriodicModeProperties = new PeriodicModeProperties() + { + BackupIntervalInMinutes = BackupIntervalInMinutes, + BackupRetentionIntervalInHours = BackupRetentionIntervalInHours + } }; - - databaseAccountCreateUpdateParameters.BackupPolicy = backupPolicy.ToSDKModel(); } if (ShouldProcess(Name, "Creating Database Account")) diff --git a/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs b/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs index 00feaa6edfeb..e2c72209a87e 100644 --- a/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs +++ b/src/CosmosDB/CosmosDB/CosmosDBAccount/UpdateAzCosmosDBAccount.cs @@ -160,14 +160,14 @@ public override void ExecuteCmdlet() { if (readDatabase.BackupPolicy is PeriodicModeBackupPolicy) { - PSBackupPolicy backupPolicy = new PSBackupPolicy() + databaseAccountUpdateParameters.BackupPolicy = new PeriodicModeBackupPolicy() { - BackupType = PSBackupPolicy.PeriodicModeBackupType, - BackupIntervalInMinutes = BackupIntervalInMinutes, - BackupRetentionIntervalInHours = BackupRetentionIntervalInHours + PeriodicModeProperties = new PeriodicModeProperties() + { + BackupIntervalInMinutes = BackupIntervalInMinutes, + BackupRetentionIntervalInHours = BackupRetentionIntervalInHours + } }; - - databaseAccountUpdateParameters.BackupPolicy = backupPolicy.ToSDKModel(); } else {