From 9ed42d287da60f72cea6e93b602810a9220625f6 Mon Sep 17 00:00:00 2001 From: Lillian Liu Date: Mon, 3 Aug 2020 21:11:22 -0700 Subject: [PATCH 1/6] Draft ShortTermRetentionPolicy Get and Set cmdlets to include new parameter DiffBackupIntervalInHours PR (except record test session). --- .../ScenarioTests/DatabaseBackupTests.ps1 | 20 +++++-- src/Sql/Sql.Test/Sql.Test.csproj | 4 +- src/Sql/Sql/ChangeLog.md | 1 + ...lDatabaseBackupShortTermRetentionPolicy.cs | 10 +++- ...baseBackupShortTermRetentionPolicyModel.cs | 13 +++++ .../Services/AzureSqlDatabaseBackupAdapter.cs | 3 +- src/Sql/Sql/Properties/Resources.Designer.cs | 15 ++++-- src/Sql/Sql/Properties/Resources.resx | 3 ++ src/Sql/Sql/Sql.csproj | 4 +- ...lDatabaseBackupShortTermRetentionPolicy.md | 14 ++--- ...lDatabaseBackupShortTermRetentionPolicy.md | 53 ++++++++++++------- 11 files changed, 103 insertions(+), 37 deletions(-) diff --git a/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 index 85eff68426de..5d2909e6363f 100644 --- a/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 @@ -444,40 +444,52 @@ function Test-ShortTermRetentionPolicy # Test default parameter set $retention = 28 - $policy = Set-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName -RetentionDays $retention + $diffbackupinterval = 24 + $policy = Set-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName -RetentionDays $retention -DiffBackupIntervalInHours $diffbackupinterval Assert-AreEqual $policy.Count 1 Assert-AreEqual $retention $policy[0].RetentionDays + Assert-AreEqual $retention $policy[0].DiffBackupIntervalInHours $policy = Get-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName Assert-AreEqual $policy.Count 1 Assert-AreEqual $retention $policy[0].RetentionDays + Assert-AreEqual $retention $policy[0].DiffBackupIntervalInHours # Test InputObject $retention = 21 - $policy = Set-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -AzureSqlDatabase $db -RetentionDays $retention + $diffbackupinterval = 12 + $policy = Set-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -AzureSqlDatabase $db -RetentionDays $retention -DiffBackupIntervalInHours $diffbackupinterval Assert-AreEqual 1 $policy.Count Assert-AreEqual $retention $policy[0].RetentionDays + Assert-AreEqual $retention $policy[0].DiffBackupIntervalInHours $policy = Get-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -AzureSqlDatabase $db Assert-AreEqual 1 $policy.Count Assert-AreEqual $retention $policy[0].RetentionDays + Assert-AreEqual $retention $policy[0].DiffBackupIntervalInHours # Test ResourceId $retention = 14 + $diffbackupinterval = 24 $resourceId = $db.ResourceId + "/backupShortTermRetentionPolicies/default" - $policy = Set-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -ResourceId $resourceId -RetentionDays $retention + $policy = Set-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -ResourceId $resourceId -RetentionDays $retention -DiffBackupIntervalInHours $diffbackupinterval Assert-AreEqual 1 $policy.Count Assert-AreEqual $retention $policy[0].RetentionDays + Assert-AreEqual $retention $policy[0].DiffBackupIntervalInHours $policy = Get-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -ResourceId $resourceId Assert-AreEqual 1 $policy.Count Assert-AreEqual $retention $policy[0].RetentionDays + Assert-AreEqual $retention $policy[0].DiffBackupIntervalInHours # Test Piping $retention = 7 - $policy = $db | Set-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -RetentionDays $retention + $diffbackupinterval = 12 + $policy = $db | Set-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -RetentionDays $retention -DiffBackupIntervalInHours $diffbackupinterval Assert-AreEqual 1 $policy.Count Assert-AreEqual $retention $policy[0].RetentionDays + Assert-AreEqual $retention $policy[0].DiffBackupIntervalInHours $policy = $db | Get-AzureRmSqlDatabaseBackupShortTermRetentionPolicy Assert-AreEqual 1 $policy.Count Assert-AreEqual $retention $policy[0].RetentionDays + Assert-AreEqual $retention $policy[0].DiffBackupIntervalInHours } finally { diff --git a/src/Sql/Sql.Test/Sql.Test.csproj b/src/Sql/Sql.Test/Sql.Test.csproj index d0d7ca5ea11a..bd2a88e52821 100644 --- a/src/Sql/Sql.Test/Sql.Test.csproj +++ b/src/Sql/Sql.Test/Sql.Test.csproj @@ -19,7 +19,9 @@ - + + ..\..\..\..\azure-sdk-for-net\artifacts\bin\Microsoft.Azure.Management.Sql\Debug\net461\Microsoft.Azure.Management.Sql.dll + diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index 92549aa6764b..fa1a525775ae 100644 --- a/src/Sql/Sql/ChangeLog.md +++ b/src/Sql/Sql/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Added DiffBackupIntervalInHours to `Set-AzSqlDatabaseBackupShortTermRetentionPolicy` ## Version 2.9.1 * Fixed potential server name case insensitive error in `New-AzSqlServer` and `Set-AzSqlServer` diff --git a/src/Sql/Sql/Database Backup/Cmdlet/SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy.cs b/src/Sql/Sql/Database Backup/Cmdlet/SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy.cs index 6ebd17c1e6a1..c96971a57995 100644 --- a/src/Sql/Sql/Database Backup/Cmdlet/SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy.cs +++ b/src/Sql/Sql/Database Backup/Cmdlet/SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy.cs @@ -34,6 +34,14 @@ public class SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy : AzureSqlDatab [ValidateNotNullOrEmpty] public int RetentionDays{ get; set; } + /// + /// Gets or sets differential backup interval hours. + /// + [Parameter(Mandatory = true, + Position = 4, + HelpMessage = "The differential backup interval, in hours.")] + public int? DiffBackupIntervalInHours { get; set; } + /// /// Get the entities from the service /// @@ -64,7 +72,7 @@ protected override IEnumerable public int RetentionDays { get; set; } + /// + /// Gets or sets the differential backup interval of this policy. + /// + public int? DiffBackupIntervalInHours { get; set; } + /// /// Construct AzureSqlDatabaseBackupShortTermRetentionPolicyModel from Management.Sql.BackupShortTermRetentionPolicy object /// @@ -44,10 +51,16 @@ public class AzureSqlDatabaseBackupShortTermRetentionPolicyModel /// public AzureSqlDatabaseBackupShortTermRetentionPolicyModel(string resourceGroup, string serverName, string databaseName, Management.Sql.Models.BackupShortTermRetentionPolicy policy) { + if (policy.RetentionDays == null && policy.DiffBackupIntervalInHours == null) + { + throw new ArgumentException(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.SetAzSqlDatabaseBackupShortTermRetentionInvalidParameters, "RetentionDays", "DiffBackupIntervalInHours")); + } + ResourceGroupName = resourceGroup; ServerName = serverName; DatabaseName = databaseName; RetentionDays = policy.RetentionDays.Value; + DiffBackupIntervalInHours = policy.DiffBackupIntervalInHours.Value; } } } \ No newline at end of file diff --git a/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupAdapter.cs b/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupAdapter.cs index 80d3f06c7af1..0b68933844ae 100644 --- a/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupAdapter.cs +++ b/src/Sql/Sql/Database Backup/Services/AzureSqlDatabaseBackupAdapter.cs @@ -581,7 +581,8 @@ internal AzureSqlDatabaseBackupShortTermRetentionPolicyModel SetDatabaseBackupSh databaseName, new Management.Sql.Models.BackupShortTermRetentionPolicy() { - RetentionDays = model.RetentionDays + RetentionDays = model.RetentionDays, + DiffBackupIntervalInHours = model.DiffBackupIntervalInHours }); return new AzureSqlDatabaseBackupShortTermRetentionPolicyModel(resourceGroup, serverName, databaseName, baPolicy); diff --git a/src/Sql/Sql/Properties/Resources.Designer.cs b/src/Sql/Sql/Properties/Resources.Designer.cs index 4505924f7970..7c30af795719 100644 --- a/src/Sql/Sql/Properties/Resources.Designer.cs +++ b/src/Sql/Sql/Properties/Resources.Designer.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.Properties { // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { @@ -31,7 +31,7 @@ internal class Resources { [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal Resources() { } - + /// /// Returns the cached ResourceManager instance used by this class. /// @@ -1229,7 +1229,7 @@ internal static string ServerNameExists { return ResourceManager.GetString("ServerNameExists", resourceCulture); } } - + /// /// Looks up a localized string similar to The server name '{0}' cannot be empty or null. The server name can only be made up of lowercase letters a-z, the numbers 0-9 and the hyphen. The hyphen may not lead or trail in the server name. Please fix the server name and retry. Please contact Microsoft support if the issue persists.. /// @@ -1293,6 +1293,15 @@ internal static string SetAdvisorAutoExecuteStatusWarning { } } + /// + /// Looks up a localized string similar to Parameter '{0}' and '{1}' both being null is not allowed.. + /// + internal static string SetAzSqlDatabaseBackupShortTermRetentionInvalidParameters { + get { + return ResourceManager.GetString("SetAzSqlDatabaseBackupShortTermRetentionInvalidParameters", resourceCulture); + } + } + /// /// Looks up a localized string similar to Setting Azure Sql Database Managed Instance '{0}'.. /// diff --git a/src/Sql/Sql/Properties/Resources.resx b/src/Sql/Sql/Properties/Resources.resx index 4043a94423e7..036a108ac331 100644 --- a/src/Sql/Sql/Properties/Resources.resx +++ b/src/Sql/Sql/Properties/Resources.resx @@ -634,4 +634,7 @@ The server name '{0}' cannot be empty or null. The server name can only be made up of lowercase letters a-z, the numbers 0-9 and the hyphen. The hyphen may not lead or trail in the server name. Please fix the server name and retry. Please contact Microsoft support if the issue persists. + + Parameter '{0}' and '{1}' both being null is not allowed. + \ No newline at end of file diff --git a/src/Sql/Sql/Sql.csproj b/src/Sql/Sql/Sql.csproj index a070564762a4..ebc24543d301 100644 --- a/src/Sql/Sql/Sql.csproj +++ b/src/Sql/Sql/Sql.csproj @@ -21,7 +21,9 @@ - + + ..\..\..\..\azure-sdk-for-net\artifacts\bin\Microsoft.Azure.Management.Sql\Debug\net461\Microsoft.Azure.Management.Sql.dll + diff --git a/src/Sql/Sql/help/Get-AzSqlDatabaseBackupShortTermRetentionPolicy.md b/src/Sql/Sql/help/Get-AzSqlDatabaseBackupShortTermRetentionPolicy.md index 0cee3923ba5e..8396c5b525ec 100644 --- a/src/Sql/Sql/help/Get-AzSqlDatabaseBackupShortTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Get-AzSqlDatabaseBackupShortTermRetentionPolicy.md @@ -32,7 +32,7 @@ Get-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceId [-DefaultPr ## DESCRIPTION The **Get-AzSqlDatabaseBackupShortTermRetentionPolicy** cmdlet gets the short term retention policy registered to this database. -The policy is the retention period, in days, for point-in-time restore backups. +The policy is the retention period in days and differential backup interval in hours, for point-in-time restore backups. ## EXAMPLES @@ -40,9 +40,9 @@ The policy is the retention period, in days, for point-in-time restore backups. ```powershell PS C:\> Get-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName resourcegroup01 -ServerName server01 -DatabaseName database01 -ResourceGroupName ServerName DatabaseName RetentionDays ------------------ ---------- ------------ ------------- -resourcegroup01 server01 database01 35 +ResourceGroupName ServerName DatabaseName RetentionDays DiffBackupIntervalInHours +----------------- ---------- ------------ ------------- ------------------------- +resourcegroup01 server01 database01 7 24 ``` This command gets the short term retention policy for database01. @@ -51,9 +51,9 @@ This command gets the short term retention policy for database01. ```powershell PS C:\> Get-AzSqlDatabase -ResourceGroupName resourcegroup01 -ServerName server01 -DatabaseName database01 | Get-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName ServerName DatabaseName RetentionDays ------------------ ---------- ------------ ------------- -resourcegroup01 server01 database01 35 +ResourceGroupName ServerName DatabaseName RetentionDays DiffBackupIntervalInHours +----------------- ---------- ------------ ------------- ------------------------- +resourcegroup01 server01 database01 7 24 ``` This command gets the short term retention policy for database01 via piping in a database object. diff --git a/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md b/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md index f85e70c781c4..fd7ba538f81e 100644 --- a/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md @@ -14,49 +14,49 @@ Sets a backup short term retention policy. ### PolicyByResourceServerDatabaseSet (Default) ``` -Set-AzSqlDatabaseBackupShortTermRetentionPolicy [-RetentionDays] [-ResourceGroupName] - [-ServerName] [-DatabaseName] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] +Set-AzSqlDatabaseBackupShortTermRetentionPolicy [-RetentionDays] [-DiffBackupIntervalInHours] + [-ResourceGroupName] [-ServerName] [-DatabaseName] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### PolicyByInputObjectSet ``` -Set-AzSqlDatabaseBackupShortTermRetentionPolicy [-RetentionDays] +Set-AzSqlDatabaseBackupShortTermRetentionPolicy [-RetentionDays] [-DiffBackupIntervalInHours] -AzureSqlDatabaseObject [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### PolicyByResourceIdSet ``` -Set-AzSqlDatabaseBackupShortTermRetentionPolicy [-RetentionDays] -ResourceId - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Set-AzSqlDatabaseBackupShortTermRetentionPolicy [-RetentionDays] [-DiffBackupIntervalInHours] + -ResourceId [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -The **Set-AzSqlDatabaseBackupShortTermRetentionPolicy** cmdlet gets the short term retention policy registered to this database. -The policy is the retention period, in days, for point-in-time restore backups. +The **Set-AzSqlDatabaseBackupShortTermRetentionPolicy** cmdlet sets the short term retention policy registered to this database. +The policy is the retention period in days and differential backup interval in hours, for point-in-time restore backups. ## EXAMPLES ### Example 1 ```powershell -PS C:\> Set-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName resourcegroup01 -ServerName server01 -DatabaseName database01 -RetentionDays 35 - ResourceGroupName ServerName DatabaseName RetentionDays ------------------ ---------- ------------ ------------- -resourcegroup01 server01 database01 35 +PS C:\> Set-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName resourcegroup01 -ServerName server01 -DatabaseName database01 -RetentionDays 35 -DiffBackupIntervalInHours 24 +ResourceGroupName ServerName DatabaseName RetentionDays DiffBackupIntervalInHours +----------------- ---------- ------------ ------------- ------------------------- +resourcegroup01 server01 database01 7 24 ``` -This command sets the short term retention policy for database01 to 35 days. +This command sets the short term retention policy for database01 to 7 retention days and 24 differential backup interval hours. ### Example 2 ```powershell -PS C:\> Get-AzSqlDatabase -ResourceGroupName resourcegroup01 -ServerName server01 -DatabaseName database01 | Set-AzSqlDatabaseBackupShortTermRetentionPolicy -RetentionDays 35 - ResourceGroupName ServerName DatabaseName RetentionDays ------------------ ---------- ------------ ------------- -resourcegroup01 server01 database01 35 +PS C:\> Get-AzSqlDatabase -ResourceGroupName resourcegroup01 -ServerName server01 -DatabaseName database01 | Set-AzSqlDatabaseBackupShortTermRetentionPolicy -RetentionDays 35 -DiffBackupIntervalInHours 24 +ResourceGroupName ServerName DatabaseName RetentionDays DiffBackupIntervalInHours +----------------- ---------- ------------ ------------- ------------------------ +resourcegroup01 server01 database01 7 24 ``` -This command sets the short term retention policy for database01 to 35 days via piping in a database object. +This command sets the short term retention policy for database01 to 7 retention days and 24 differential backup interval hours via piping in a database object. ## PARAMETERS @@ -145,7 +145,22 @@ Aliases: Required: True Position: 3 -Default value: None +Default value: 7 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DiffBackupIntervalInHours +The differential backup interval, in hours. + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: True +Position: 4 +Default value: 24 Accept pipeline input: False Accept wildcard characters: False ``` From a8b0c1a1ac44b653a7d88b2d52ec21cbbcb4cb48 Mon Sep 17 00:00:00 2001 From: Lillian Liu Date: Wed, 2 Sep 2020 23:02:39 -0700 Subject: [PATCH 2/6] set RetentionDays nullable and remove parameters' position requirement. --- ...etAzureRmSqlDatabaseBackupShortTermRetentionPolicy.cs | 9 +++------ ...zureSqlDatabaseBackupShortTermRetentionPolicyModel.cs | 2 +- .../Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md | 2 -- 3 files changed, 4 insertions(+), 9 deletions(-) diff --git a/src/Sql/Sql/Database Backup/Cmdlet/SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy.cs b/src/Sql/Sql/Database Backup/Cmdlet/SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy.cs index c96971a57995..acb83db313a0 100644 --- a/src/Sql/Sql/Database Backup/Cmdlet/SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy.cs +++ b/src/Sql/Sql/Database Backup/Cmdlet/SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy.cs @@ -29,19 +29,16 @@ public class SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy : AzureSqlDatab /// Gets or sets backup retention days. /// [Parameter(Mandatory = true, - Position = 3, HelpMessage = "The backup retention setting, in days.")] - [ValidateNotNullOrEmpty] - public int RetentionDays{ get; set; } + public int? RetentionDays { get; set; } /// /// Gets or sets differential backup interval hours. /// [Parameter(Mandatory = true, - Position = 4, HelpMessage = "The differential backup interval, in hours.")] - public int? DiffBackupIntervalInHours { get; set; } - + public int? DiffBackupIntervalInHours { get; set; } + /// /// Get the entities from the service /// diff --git a/src/Sql/Sql/Database Backup/Model/AzureSqlDatabaseBackupShortTermRetentionPolicyModel.cs b/src/Sql/Sql/Database Backup/Model/AzureSqlDatabaseBackupShortTermRetentionPolicyModel.cs index 4738146f3636..9b3f8c306ca9 100644 --- a/src/Sql/Sql/Database Backup/Model/AzureSqlDatabaseBackupShortTermRetentionPolicyModel.cs +++ b/src/Sql/Sql/Database Backup/Model/AzureSqlDatabaseBackupShortTermRetentionPolicyModel.cs @@ -36,7 +36,7 @@ public class AzureSqlDatabaseBackupShortTermRetentionPolicyModel /// /// Gets or sets the retention days of this policy. /// - public int RetentionDays { get; set; } + public int? RetentionDays { get; set; } /// /// Gets or sets the differential backup interval of this policy. diff --git a/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md b/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md index fd7ba538f81e..7819208144db 100644 --- a/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md @@ -144,7 +144,6 @@ Parameter Sets: (All) Aliases: Required: True -Position: 3 Default value: 7 Accept pipeline input: False Accept wildcard characters: False @@ -159,7 +158,6 @@ Parameter Sets: (All) Aliases: Required: True -Position: 4 Default value: 24 Accept pipeline input: False Accept wildcard characters: False From 0166d1442505adff4d20d58fbd293232a5e20990 Mon Sep 17 00:00:00 2001 From: Lillian Liu Date: Mon, 12 Oct 2020 18:53:46 -0700 Subject: [PATCH 3/6] scenario test passed. --- .../ScenarioTests/DatabaseBackupTests.ps1 | 60 +- .../TestShortTermRetentionPolicy.json | 1585 ++++++----------- ...DatabaseBackupShortTermRetentionPolicy.cs} | 0 ...DatabaseBackupShortTermRetentionPolicy.cs} | 14 +- ...lDatabaseBackupShortTermRetentionPolicy.md | 6 +- ...lDatabaseBackupShortTermRetentionPolicy.md | 32 +- 6 files changed, 622 insertions(+), 1075 deletions(-) rename src/Sql/Sql/Database Backup/Cmdlet/{GetAzureRmSqlDatabaseBackupShortTermRetentionPolicy.cs => GetAzureSqlDatabaseBackupShortTermRetentionPolicy.cs} (100%) rename src/Sql/Sql/Database Backup/Cmdlet/{SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy.cs => SetAzureSqlDatabaseBackupShortTermRetentionPolicy.cs} (87%) diff --git a/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 index a133e8c0021a..862531f021b1 100644 --- a/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 @@ -443,67 +443,73 @@ function Test-RemoveDatabaseRestorePoint function Test-ShortTermRetentionPolicy { # Setup - $location = Get-Location "Microsoft.Sql" "servers" "West US 2" - $rg = Create-ResourceGroupForTest $location - $server = Create-ServerForTest $rg $location + $location = "southeast asia" + $rg = "PowershellStageResourceGroup" + $server = "pssqlserverfortest" try { # Create db with default values $databaseName = Get-DatabaseName - $db = New-AzureRmSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName + $db = New-AzSqlDatabase -ResourceGroupName $rg -ServerName $server -DatabaseName $databaseName -Force:$true - # Test default parameter set - $retention = 28 - $diffbackupinterval = 24 - $policy = Set-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName -RetentionDays $retention -DiffBackupIntervalInHours $diffbackupinterval + # Test GET + $defaultRetention = 7 + # After we configure Backup Service's default DiffBackupIntervalInHours as 24 hours for new created databases, $defaultDiffbackupinterval should be 24. + $defaultDiffbackupinterval = 12 + $policy = Get-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName $rg -ServerName $server -DatabaseName $databaseName Assert-AreEqual $policy.Count 1 - Assert-AreEqual $retention $policy[0].RetentionDays - Assert-AreEqual $retention $policy[0].DiffBackupIntervalInHours - $policy = Get-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName + Assert-AreEqual $defaultRetention $policy[0].RetentionDays + Assert-AreEqual $defaultDiffbackupinterval $policy[0].DiffBackupIntervalInHours + + # Test SET + $retention = 6 + $diffbackupinterval = 24 + $policy = Set-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName $rg -ServerName $server -DatabaseName $databaseName -RetentionDays $retention -DiffBackupIntervalInHours $diffbackupinterval + Assert-AreEqual $policy.Count 1 Assert-AreEqual $retention $policy[0].RetentionDays - Assert-AreEqual $retention $policy[0].DiffBackupIntervalInHours + Assert-AreEqual $diffbackupinterval $policy[0].DiffBackupIntervalInHours # Test InputObject - $retention = 21 + $retention = 7 $diffbackupinterval = 12 - $policy = Set-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -AzureSqlDatabase $db -RetentionDays $retention -DiffBackupIntervalInHours $diffbackupinterval + $policy = Set-AzSqlDatabaseBackupShortTermRetentionPolicy -AzureSqlDatabase $db -RetentionDays $retention -DiffBackupIntervalInHours $diffbackupinterval Assert-AreEqual 1 $policy.Count Assert-AreEqual $retention $policy[0].RetentionDays - Assert-AreEqual $retention $policy[0].DiffBackupIntervalInHours - $policy = Get-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -AzureSqlDatabase $db + Assert-AreEqual $diffbackupinterval $policy[0].DiffBackupIntervalInHours + $policy = Get-AzSqlDatabaseBackupShortTermRetentionPolicy -AzureSqlDatabase $db Assert-AreEqual 1 $policy.Count Assert-AreEqual $retention $policy[0].RetentionDays - Assert-AreEqual $retention $policy[0].DiffBackupIntervalInHours + Assert-AreEqual $diffbackupinterval $policy[0].DiffBackupIntervalInHours # Test ResourceId - $retention = 14 + $retention = 6 $diffbackupinterval = 24 $resourceId = $db.ResourceId + "/backupShortTermRetentionPolicies/default" - $policy = Set-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -ResourceId $resourceId -RetentionDays $retention -DiffBackupIntervalInHours $diffbackupinterval + $policy = Set-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceId $resourceId -RetentionDays $retention -DiffBackupIntervalInHours $diffbackupinterval Assert-AreEqual 1 $policy.Count Assert-AreEqual $retention $policy[0].RetentionDays - Assert-AreEqual $retention $policy[0].DiffBackupIntervalInHours - $policy = Get-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -ResourceId $resourceId + Assert-AreEqual $diffbackupinterval $policy[0].DiffBackupIntervalInHours + $policy = Get-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceId $resourceId Assert-AreEqual 1 $policy.Count Assert-AreEqual $retention $policy[0].RetentionDays - Assert-AreEqual $retention $policy[0].DiffBackupIntervalInHours + Assert-AreEqual $diffbackupinterval $policy[0].DiffBackupIntervalInHours # Test Piping $retention = 7 $diffbackupinterval = 12 - $policy = $db | Set-AzureRmSqlDatabaseBackupShortTermRetentionPolicy -RetentionDays $retention -DiffBackupIntervalInHours $diffbackupinterval + $policy = $db | Set-AzSqlDatabaseBackupShortTermRetentionPolicy -RetentionDays $retention -DiffBackupIntervalInHours $diffbackupinterval Assert-AreEqual 1 $policy.Count Assert-AreEqual $retention $policy[0].RetentionDays - Assert-AreEqual $retention $policy[0].DiffBackupIntervalInHours - $policy = $db | Get-AzureRmSqlDatabaseBackupShortTermRetentionPolicy + Assert-AreEqual $diffbackupinterval $policy[0].DiffBackupIntervalInHours + $policy = $db | Get-AzSqlDatabaseBackupShortTermRetentionPolicy Assert-AreEqual 1 $policy.Count Assert-AreEqual $retention $policy[0].RetentionDays - Assert-AreEqual $retention $policy[0].DiffBackupIntervalInHours + Assert-AreEqual $diffbackupinterval $policy[0].DiffBackupIntervalInHours } finally { - Remove-ResourceGroupForTest $rg + Remove-AzSqlDatabase -ResourceGroupName $rg -ServerName $server -DatabaseName $databaseName } } \ No newline at end of file diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests/TestShortTermRetentionPolicy.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests/TestShortTermRetentionPolicy.json index 7565c94cb650..b8624c7c87ad 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests/TestShortTermRetentionPolicy.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests/TestShortTermRetentionPolicy.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/providers/Microsoft.Sql?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fef7dbb7-d53a-47c8-96ff-10198d0f9073" + "7b152e1b-4ce0-443d-98f9-b5a702b97fd4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -26,17 +26,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], "x-ms-request-id": [ - "ce7cabb4-8622-4fae-ae97-7b0fbf902ba7" + "55417be7-ced5-4294-9e07-bec665d09505" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" ], "x-ms-correlation-request-id": [ - "ce7cabb4-8622-4fae-ae97-7b0fbf902ba7" + "124dac65-4090-4b74-8b31-7c754bd4ad7b" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062613Z:ce7cabb4-8622-4fae-ae97-7b0fbf902ba7" + "NORTHEUROPE:20201013T014650Z:124dac65-4090-4b74-8b31-7c754bd4ad7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,44 +48,38 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:26:12 GMT" + "Tue, 13 Oct 2020 01:46:49 GMT" + ], + "Content-Length": [ + "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "128274" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n },\r\n {\r\n \"applicationId\": \"022907d3-0f1b-48f7-badc-1ba6abab6d66\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupShortTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/steps\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/executions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/workloadGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/recommendedSensitivityLabels\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"instancePools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/importExportAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/sqlAgent\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstancePrivateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstancePrivateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstancePrivateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstancePrivateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/notifyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\",\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverTrustGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverTrustGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverTrustGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-02-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"@@BykiwJs636a5kLGk740C6xZsYzvN\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"pssqlserverfortest.sqltest-eg1.mscds.com\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest\",\r\n \"name\": \"pssqlserverfortest\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps8890?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzODg5MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3Q/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfa7a6bd-a068-434b-9201-e3c31118d42f" + "665b1ee0-335d-4565-ade9-9992852b9578" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "31" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -92,17 +89,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], "x-ms-request-id": [ - "eff2ad65-7a26-4e36-80d8-1451d6372825" + "f242778a-6822-4dac-b689-b10c34050743" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" ], "x-ms-correlation-request-id": [ - "eff2ad65-7a26-4e36-80d8-1451d6372825" + "6a6a3615-7d22-4d9b-bd24-45c1302aa715" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062613Z:eff2ad65-7a26-4e36-80d8-1451d6372825" + "NORTHEUROPE:20201013T014650Z:6a6a3615-7d22-4d9b-bd24-45c1302aa715" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:26:13 GMT" + "Tue, 13 Oct 2020 01:46:49 GMT" ], "Content-Length": [ - "166" + "492" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890\",\r\n \"name\": \"ps8890\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"@@BykiwJs636a5kLGk740C6xZsYzvN\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"pssqlserverfortest.sqltest-eg1.mscds.com\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest\",\r\n \"name\": \"pssqlserverfortest\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "762c6623-f264-4026-af57-d96994843ee1" + "45a58a31-1feb-4a3d-b8d4-79870a40ebce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -156,13 +156,13 @@ "gateway" ], "x-ms-request-id": [ - "6ccc3256-61e3-437e-a227-3d7bd2f924ae" + "1f6d426c-9276-41a3-a31d-fd1383e5c68f" ], "x-ms-correlation-request-id": [ - "6ccc3256-61e3-437e-a227-3d7bd2f924ae" + "1f6d426c-9276-41a3-a31d-fd1383e5c68f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062613Z:6ccc3256-61e3-437e-a227-3d7bd2f924ae" + "NORTHEUROPE:20201013T014650Z:1f6d426c-9276-41a3-a31d-fd1383e5c68f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:26:13 GMT" + "Tue, 13 Oct 2020 01:46:49 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -180,86 +180,23 @@ "-1" ], "Content-Length": [ - "206" + "257" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps1428' under resource group 'ps8890' 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.Sql/servers/pssqlserverfortest/databases/ps5047' under resource group 'PowershellStageResourceGroup' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e084cece-c223-457e-b016-0ad720037ad6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-correlation-request-id": [ - "98177ef1-7ce7-4ec2-8974-1bb6e9506554" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T062700Z:98177ef1-7ce7-4ec2-8974-1bb6e9506554" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 06:26:59 GMT" - ], - "Content-Length": [ - "409" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1428.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428\",\r\n \"name\": \"ps1428\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4cb29e43-df50-442d-a50f-e4460b1ada41" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -270,19 +207,19 @@ "no-cache" ], "x-ms-request-id": [ - "3197d60f-4155-4542-8c7f-7eed50c7966b" + "1f1483c9-e491-48de-acca-b58e3033991e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "14985" ], "x-ms-correlation-request-id": [ - "4f91943e-39f1-4ebe-bd62-c744632839f3" + "9c365f09-a786-4841-a0ff-d552fd35bec3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062700Z:4f91943e-39f1-4ebe-bd62-c744632839f3" + "NORTHEUROPE:20201013T014941Z:9c365f09-a786-4841-a0ff-d552fd35bec3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,10 +228,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:26:59 GMT" + "Tue, 13 Oct 2020 01:49:41 GMT" ], "Content-Length": [ - "409" + "1021" ], "Content-Type": [ "application/json; charset=utf-8" @@ -303,26 +240,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1428.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428\",\r\n \"name\": \"ps1428\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"1fc4bcfe-79d1-4080-b68a-152d10d7a1af\",\r\n \"creationDate\": \"2020-10-13T01:49:27.43Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307921510,\r\n \"earliestRestoreDate\": \"2020-10-13T02:19:27.43Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047\",\r\n \"name\": \"ps5047\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc897591-52f8-4036-8c18-6ce4910d1afa" + "c2b17cf3-46b6-4270-b2b7-3ea0415cfad8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -333,19 +270,19 @@ "no-cache" ], "x-ms-request-id": [ - "6b268071-2ffa-4751-bd34-63c8e3d2a29c" + "46925022-f69b-4b77-af57-72515b6ca2b2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "14968" ], "x-ms-correlation-request-id": [ - "e265b80b-adcb-4b05-af31-460f473fd60e" + "646755f8-86e9-4548-a59b-01f8c7126534" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062700Z:e265b80b-adcb-4b05-af31-460f473fd60e" + "NORTHEUROPE:20201013T015049Z:646755f8-86e9-4548-a59b-01f8c7126534" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,10 +291,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:27:00 GMT" + "Tue, 13 Oct 2020 01:50:49 GMT" ], "Content-Length": [ - "409" + "1021" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,32 +303,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"ps1428.database.windows.net\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428\",\r\n \"name\": \"ps1428\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"1fc4bcfe-79d1-4080-b68a-152d10d7a1af\",\r\n \"creationDate\": \"2020-10-13T01:49:27.43Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307921510,\r\n \"earliestRestoreDate\": \"2020-10-13T02:19:27.43Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047\",\r\n \"name\": \"ps5047\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"West US 2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d9674d17-779f-49ca-be42-fd1bb646a1ab" + "377e8ed1-d317-4ebc-9b09-7564d0f08c64" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "153" + "105" ] }, "ResponseHeaders": { @@ -402,16 +339,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/serverOperationResults/5be7537d-8e7f-4b7c-a19c-1bb8d6188295?api-version=2019-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview" ], "Retry-After": [ - "1" + "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/serverAzureAsyncOperation/5be7537d-8e7f-4b7c-a19c-1bb8d6188295?api-version=2019-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "5be7537d-8e7f-4b7c-a19c-1bb8d6188295" + "3c286185-dbb8-4e4a-8ad0-cd7b0dd39532" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -420,10 +357,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "f3748d6e-50f4-43a9-b4b2-e1a54183f954" + "99e83d0f-aaa6-4adf-9f74-5f868bf264b1" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062614Z:f3748d6e-50f4-43a9-b4b2-e1a54183f954" + "NORTHEUROPE:20201013T014652Z:99e83d0f-aaa6-4adf-9f74-5f868bf264b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,10 +369,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:26:14 GMT" + "Tue, 13 Oct 2020 01:46:52 GMT" ], "Content-Length": [ - "73" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,20 +381,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2020-09-14T06:26:14.68Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/serverAzureAsyncOperation/5be7537d-8e7f-4b7c-a19c-1bb8d6188295?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzMi9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzViZTc1MzdkLThlN2YtNGI3Yy1hMTljLTFiYjhkNjE4ODI5NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -468,22 +405,22 @@ "no-cache" ], "Retry-After": [ - "1" + "15" ], "x-ms-request-id": [ - "b55fd573-1baf-47f3-ad7f-2405d3411526" + "36e0574a-6789-413d-947f-352441500292" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "14996" ], "x-ms-correlation-request-id": [ - "b97c757f-8aed-4faa-b2ef-295a95d5f4e5" + "bae9b9e0-055f-4d2f-a147-94300dbf3b70" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062615Z:b97c757f-8aed-4faa-b2ef-295a95d5f4e5" + "NORTHEUROPE:20201013T014707Z:bae9b9e0-055f-4d2f-a147-94300dbf3b70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,10 +429,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:26:15 GMT" + "Tue, 13 Oct 2020 01:47:07 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,20 +441,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5be7537d-8e7f-4b7c-a19c-1bb8d6188295\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T06:26:14.68Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/serverAzureAsyncOperation/5be7537d-8e7f-4b7c-a19c-1bb8d6188295?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzMi9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzViZTc1MzdkLThlN2YtNGI3Yy1hMTljLTFiYjhkNjE4ODI5NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -528,22 +465,22 @@ "no-cache" ], "Retry-After": [ - "1" + "15" ], "x-ms-request-id": [ - "dc716072-b8e9-4deb-bd73-c89fff48aca1" + "d91151d5-d836-4677-bd03-630b553e18b8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "14995" ], "x-ms-correlation-request-id": [ - "11431a70-54b6-448d-9451-f5e6d4269624" + "55745186-032e-43ea-9aa6-57ea8d52bc49" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062616Z:11431a70-54b6-448d-9451-f5e6d4269624" + "NORTHEUROPE:20201013T014723Z:55745186-032e-43ea-9aa6-57ea8d52bc49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,10 +489,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:26:16 GMT" + "Tue, 13 Oct 2020 01:47:23 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,20 +501,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5be7537d-8e7f-4b7c-a19c-1bb8d6188295\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T06:26:14.68Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/serverAzureAsyncOperation/5be7537d-8e7f-4b7c-a19c-1bb8d6188295?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzMi9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzViZTc1MzdkLThlN2YtNGI3Yy1hMTljLTFiYjhkNjE4ODI5NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -588,22 +525,22 @@ "no-cache" ], "Retry-After": [ - "1" + "15" ], "x-ms-request-id": [ - "082b23e0-19cf-4054-b4e9-a210e2d49e51" + "5ff974ae-8794-4bcf-9f90-79c47cb209a8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "14994" ], "x-ms-correlation-request-id": [ - "05d5ae63-faed-4823-a32a-3b28abd1be75" + "35dc9809-3f33-4250-8aea-b6efe8a21a09" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062617Z:05d5ae63-faed-4823-a32a-3b28abd1be75" + "NORTHEUROPE:20201013T014738Z:35dc9809-3f33-4250-8aea-b6efe8a21a09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,10 +549,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:26:17 GMT" + "Tue, 13 Oct 2020 01:47:38 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -624,20 +561,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5be7537d-8e7f-4b7c-a19c-1bb8d6188295\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T06:26:14.68Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/serverAzureAsyncOperation/5be7537d-8e7f-4b7c-a19c-1bb8d6188295?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzMi9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzViZTc1MzdkLThlN2YtNGI3Yy1hMTljLTFiYjhkNjE4ODI5NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -648,22 +585,22 @@ "no-cache" ], "Retry-After": [ - "1" + "15" ], "x-ms-request-id": [ - "c4531747-8208-4a2e-a62b-0170073089fe" + "d40a9f21-2923-44d1-bffa-77413ade887a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "14993" ], "x-ms-correlation-request-id": [ - "ac2ca3e5-b999-4bf2-a32a-56a0a1413155" + "e15e77c7-3e57-4108-96eb-9957a2ca43ee" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062619Z:ac2ca3e5-b999-4bf2-a32a-56a0a1413155" + "NORTHEUROPE:20201013T014753Z:e15e77c7-3e57-4108-96eb-9957a2ca43ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,10 +609,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:26:18 GMT" + "Tue, 13 Oct 2020 01:47:53 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -684,20 +621,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5be7537d-8e7f-4b7c-a19c-1bb8d6188295\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T06:26:14.68Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/serverAzureAsyncOperation/5be7537d-8e7f-4b7c-a19c-1bb8d6188295?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzMi9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzViZTc1MzdkLThlN2YtNGI3Yy1hMTljLTFiYjhkNjE4ODI5NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -708,22 +645,22 @@ "no-cache" ], "Retry-After": [ - "20" + "15" ], "x-ms-request-id": [ - "c5e42176-e457-4275-8e12-fcdc0f07375f" + "4074284f-07d1-4041-ad78-dc14432f6714" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "14992" ], "x-ms-correlation-request-id": [ - "83e227e7-ef7d-47c2-a06e-5cc0b7891462" + "31090405-0206-4921-8f80-43aabb840f2d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062620Z:83e227e7-ef7d-47c2-a06e-5cc0b7891462" + "NORTHEUROPE:20201013T014809Z:31090405-0206-4921-8f80-43aabb840f2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,10 +669,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:26:19 GMT" + "Tue, 13 Oct 2020 01:48:08 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,20 +681,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5be7537d-8e7f-4b7c-a19c-1bb8d6188295\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T06:26:14.68Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/serverAzureAsyncOperation/5be7537d-8e7f-4b7c-a19c-1bb8d6188295?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzMi9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzViZTc1MzdkLThlN2YtNGI3Yy1hMTljLTFiYjhkNjE4ODI5NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -768,22 +705,22 @@ "no-cache" ], "Retry-After": [ - "20" + "15" ], "x-ms-request-id": [ - "9790eb16-64a8-40dd-bd01-047faca19710" + "b891daf1-380b-4d71-b639-4ef0114ba4d9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "14991" ], "x-ms-correlation-request-id": [ - "6b788faf-fd53-4b46-8939-96d41b848c39" + "2c50b5fc-0877-45c9-adde-0920a2614bde" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062640Z:6b788faf-fd53-4b46-8939-96d41b848c39" + "NORTHEUROPE:20201013T014824Z:2c50b5fc-0877-45c9-adde-0920a2614bde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,10 +729,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:26:39 GMT" + "Tue, 13 Oct 2020 01:48:23 GMT" ], "Content-Length": [ - "107" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -804,20 +741,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5be7537d-8e7f-4b7c-a19c-1bb8d6188295\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T06:26:14.68Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/serverAzureAsyncOperation/5be7537d-8e7f-4b7c-a19c-1bb8d6188295?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzMi9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzViZTc1MzdkLThlN2YtNGI3Yy1hMTljLTFiYjhkNjE4ODI5NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -831,19 +768,19 @@ "15" ], "x-ms-request-id": [ - "01e67865-2d2c-4ed2-aba0-d26063c4e05f" + "d9b694aa-0632-4c5e-ae98-f8e63137fb87" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "14990" ], "x-ms-correlation-request-id": [ - "400aa35c-5b22-4564-a9aa-9a0fe5ce5990" + "67a63662-8914-49fa-90da-4e042f21f709" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062700Z:400aa35c-5b22-4564-a9aa-9a0fe5ce5990" + "NORTHEUROPE:20201013T014839Z:67a63662-8914-49fa-90da-4e042f21f709" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,10 +789,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:26:59 GMT" + "Tue, 13 Oct 2020 01:48:38 GMT" ], "Content-Length": [ - "106" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -864,26 +801,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5be7537d-8e7f-4b7c-a19c-1bb8d6188295\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T06:26:14.68Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9bf53c6f-14e2-4d97-bf62-6eff912f6f5c" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -893,74 +824,23 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "75e43af3-a5b0-4238-96da-e8a521605519" - ], - "x-ms-correlation-request-id": [ - "75e43af3-a5b0-4238-96da-e8a521605519" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T062700Z:75e43af3-a5b0-4238-96da-e8a521605519" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 06:27:00 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "223" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/ps1428/databases/ps2503' under resource group 'ps8890' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" + "Retry-After": [ + "15" ], "x-ms-request-id": [ - "d65242a7-347b-4b06-9f05-51cc65a2d37f" + "3a02f917-ec97-4844-a6bf-0a2fb6027177" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "14989" ], "x-ms-correlation-request-id": [ - "28f1cf73-006f-435b-bda3-9262ac80254a" + "6b935e8d-a276-4191-82a1-c1e5a454baec" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062731Z:28f1cf73-006f-435b-bda3-9262ac80254a" + "NORTHEUROPE:20201013T014855Z:6b935e8d-a276-4191-82a1-c1e5a454baec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,10 +849,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:27:30 GMT" + "Tue, 13 Oct 2020 01:48:55 GMT" ], "Content-Length": [ - "981" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -981,32 +861,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"345d083b-f49f-4322-abdc-675927ef58fa\",\r\n \"creationDate\": \"2020-09-14T06:27:28.1Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"westcentralus\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307502080,\r\n \"earliestRestoreDate\": \"2020-09-14T06:57:28.1Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503\",\r\n \"name\": \"ps2503\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"westus2\"\r\n}", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f1210c23-7797-488e-9ce8-2e11088fe01f" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "99" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -1016,29 +884,23 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/databaseOperationResults/7e8a3b5d-ff45-47ed-9513-7149af5e3833?api-version=2019-06-01-preview" - ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/databaseAzureAsyncOperation/7e8a3b5d-ff45-47ed-9513-7149af5e3833?api-version=2019-06-01-preview" - ], "x-ms-request-id": [ - "7e8a3b5d-ff45-47ed-9513-7149af5e3833" + "673ef536-1926-45a2-b1b3-8b175a162f81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" ], "x-ms-correlation-request-id": [ - "ba16e0df-983a-4d16-822e-edee74529ff9" + "e8e9c817-fad8-4fc9-8f26-5587fb9c9fca" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062701Z:ba16e0df-983a-4d16-822e-edee74529ff9" + "NORTHEUROPE:20201013T014910Z:e8e9c817-fad8-4fc9-8f26-5587fb9c9fca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1047,10 +909,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:27:00 GMT" + "Tue, 13 Oct 2020 01:49:09 GMT" ], "Content-Length": [ - "76" + "108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1059,20 +921,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T06:27:01.083Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/databaseAzureAsyncOperation/7e8a3b5d-ff45-47ed-9513-7149af5e3833?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzMi9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vN2U4YTNiNWQtZmY0NS00N2VkLTk1MTMtNzE0OWFmNWUzODMzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -1086,19 +948,19 @@ "15" ], "x-ms-request-id": [ - "a44a131b-0b0c-49a5-8e65-cfe22db025fc" + "8b38e23b-f1da-4798-93da-ff48ff4367e3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "14987" ], "x-ms-correlation-request-id": [ - "01ef2591-aa55-4c2c-af7e-c87c28f883cb" + "a6b10ed6-3308-4f20-a1b2-843f2b41127d" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062716Z:01ef2591-aa55-4c2c-af7e-c87c28f883cb" + "NORTHEUROPE:20201013T014925Z:a6b10ed6-3308-4f20-a1b2-843f2b41127d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1107,7 +969,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:27:15 GMT" + "Tue, 13 Oct 2020 01:49:25 GMT" ], "Content-Length": [ "108" @@ -1119,20 +981,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7e8a3b5d-ff45-47ed-9513-7149af5e3833\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-09-14T06:27:01.083Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/databaseAzureAsyncOperation/7e8a3b5d-ff45-47ed-9513-7149af5e3833?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzMi9kYXRhYmFzZUF6dXJlQXN5bmNPcGVyYXRpb24vN2U4YTNiNWQtZmY0NS00N2VkLTk1MTMtNzE0OWFmNWUzODMzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -1146,19 +1008,19 @@ "15" ], "x-ms-request-id": [ - "f6e2e002-7241-493a-9383-935c60fff720" + "a2a9520c-95d5-4912-a3c6-6c347c6fdcd3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "14986" ], "x-ms-correlation-request-id": [ - "cef98af6-96f7-4c05-aa7a-2370260be4c8" + "e330f4a6-eeaa-41a2-879a-2e7ba5e7eb8f" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062731Z:cef98af6-96f7-4c05-aa7a-2370260be4c8" + "NORTHEUROPE:20201013T014941Z:e330f4a6-eeaa-41a2-879a-2e7ba5e7eb8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1167,7 +1029,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:27:30 GMT" + "Tue, 13 Oct 2020 01:49:40 GMT" ], "Content-Length": [ "107" @@ -1179,26 +1041,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"7e8a3b5d-ff45-47ed-9513-7149af5e3833\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T06:27:01.083Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzL2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ad2ee5d-9b3e-4f4b-b913-c7ce8287bb74" + "75efa0b6-1af4-4e92-89df-a3f73921ed28" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -1209,19 +1071,19 @@ "no-cache" ], "x-ms-request-id": [ - "623b3fd7-9ad9-4156-a5d9-01df3af2b6ea" + "ff5f7c29-edf5-4406-8ddc-e4c2b227d7d9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "14984" ], "x-ms-correlation-request-id": [ - "4402e2e7-e90b-4fb2-a507-fcf7e9547e7e" + "d8e30633-761a-4a80-9179-38e87fd1d1b3" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062731Z:4402e2e7-e90b-4fb2-a507-fcf7e9547e7e" + "NORTHEUROPE:20201013T014941Z:d8e30633-761a-4a80-9179-38e87fd1d1b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1230,10 +1092,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:27:31 GMT" + "Tue, 13 Oct 2020 01:49:41 GMT" ], "Content-Length": [ - "303" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1242,20 +1104,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzL2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "971598fa-d409-46c6-9ad3-46ff36e76dd9" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -1266,19 +1134,19 @@ "no-cache" ], "x-ms-request-id": [ - "d8336a88-b0e6-4211-8177-a7fa9f1cfaa1" + "00917945-1218-40c3-9601-e03df0a6d818" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "14983" ], "x-ms-correlation-request-id": [ - "c991ecd9-d61b-4c40-bd34-e3d3c202c337" + "26a7f4e0-5c0d-47e4-a94f-8c4ab9e1e97a" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062747Z:c991ecd9-d61b-4c40-bd34-e3d3c202c337" + "NORTHEUROPE:20201013T014942Z:26a7f4e0-5c0d-47e4-a94f-8c4ab9e1e97a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1287,10 +1155,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:27:46 GMT" + "Tue, 13 Oct 2020 01:49:41 GMT" ], "Content-Length": [ - "304" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1299,26 +1167,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 28\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzL2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bf738dec-4867-4fe6-bfcf-5f7bd2be5278" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -1329,19 +1191,19 @@ "no-cache" ], "x-ms-request-id": [ - "31208059-0fe2-47a2-84df-837a9ff86706" + "bda90c79-b308-486f-95e7-3fcd38c33564" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "14981" ], "x-ms-correlation-request-id": [ - "f87db037-2b0c-4141-8825-5f27f45f0d2a" + "33b0eece-20ae-4943-84d2-29916083fef4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062747Z:f87db037-2b0c-4141-8825-5f27f45f0d2a" + "NORTHEUROPE:20201013T014958Z:33b0eece-20ae-4943-84d2-29916083fef4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1350,10 +1212,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:27:46 GMT" + "Tue, 13 Oct 2020 01:49:58 GMT" ], "Content-Length": [ - "304" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1362,26 +1224,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 28\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzL2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2c5e047-db2b-41a3-85d5-405152335f64" + "51009822-bc7c-4618-bf41-c2a25da93255" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -1392,19 +1254,19 @@ "no-cache" ], "x-ms-request-id": [ - "299e6efb-4a9f-405f-bcaa-819861b3eef8" + "c8efa544-22be-4514-8265-22172a2d833b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "14980" ], "x-ms-correlation-request-id": [ - "a91e2b73-dff3-473e-aa4a-c6559a2a7db0" + "d962bdf9-2504-49f1-b3bb-7608b69ca962" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062747Z:a91e2b73-dff3-473e-aa4a-c6559a2a7db0" + "NORTHEUROPE:20201013T014959Z:d962bdf9-2504-49f1-b3bb-7608b69ca962" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1413,10 +1275,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:27:46 GMT" + "Tue, 13 Oct 2020 01:49:58 GMT" ], "Content-Length": [ - "304" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1425,20 +1287,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 28\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzL2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -1449,19 +1311,19 @@ "no-cache" ], "x-ms-request-id": [ - "adb49fd2-5277-492b-9862-61638a3688ec" + "93ae1c12-ba38-4efa-a478-5c9da0b98768" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "14978" ], "x-ms-correlation-request-id": [ - "cb296629-3ffa-4369-b952-007e77f608eb" + "ceb6ba8d-d4cd-4d6c-91f9-a6626b892a86" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062802Z:cb296629-3ffa-4369-b952-007e77f608eb" + "NORTHEUROPE:20201013T015015Z:ceb6ba8d-d4cd-4d6c-91f9-a6626b892a86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1470,10 +1332,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:28:01 GMT" + "Tue, 13 Oct 2020 01:50:14 GMT" ], "Content-Length": [ - "304" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1482,26 +1344,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 21\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzL2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6584f535-1b52-42a0-8244-028396df654d" + "afb6d492-2d57-404c-8e05-949eb3120fe9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -1512,19 +1374,19 @@ "no-cache" ], "x-ms-request-id": [ - "db271528-ea27-4b34-9cc9-263faf05e4c6" + "5553d50c-ec2a-431d-9f07-9f504e2b3ce0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "14977" ], "x-ms-correlation-request-id": [ - "4221ab36-20ad-425a-91fe-7963b742eb01" + "bb466a81-10b2-4af7-b636-c70c19ff85bc" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062802Z:4221ab36-20ad-425a-91fe-7963b742eb01" + "NORTHEUROPE:20201013T015015Z:bb466a81-10b2-4af7-b636-c70c19ff85bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1533,10 +1395,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:28:01 GMT" + "Tue, 13 Oct 2020 01:50:14 GMT" ], "Content-Length": [ - "304" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1545,26 +1407,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 21\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzL2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c22c52a-a571-44ac-b14d-7a6ab860be3f" + "8be91a86-15b9-456d-b97b-3de8043d0626" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -1575,19 +1437,19 @@ "no-cache" ], "x-ms-request-id": [ - "3142c51d-c62e-4308-a53c-49953ab8140c" + "c9196535-fc84-41f8-a29b-1569c71cab6f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "14976" ], "x-ms-correlation-request-id": [ - "1b4d39fa-0058-4cae-908d-47380d928c54" + "db9d2c3f-78b5-406a-a310-36484e626ba4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062802Z:1b4d39fa-0058-4cae-908d-47380d928c54" + "NORTHEUROPE:20201013T015015Z:db9d2c3f-78b5-406a-a310-36484e626ba4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1596,10 +1458,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:28:01 GMT" + "Tue, 13 Oct 2020 01:50:14 GMT" ], "Content-Length": [ - "304" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1608,20 +1470,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 21\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzL2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -1632,19 +1494,19 @@ "no-cache" ], "x-ms-request-id": [ - "8ca23ed4-90ab-465a-a638-df0e27038e3d" + "d4f328e1-c0f2-4d44-bded-a5d718a896f5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "14974" ], "x-ms-correlation-request-id": [ - "ab452c9a-c78c-4c9c-b3d2-abf0b9d5c8b6" + "2694176e-25b0-4d1f-84b8-834967e43075" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062817Z:ab452c9a-c78c-4c9c-b3d2-abf0b9d5c8b6" + "NORTHEUROPE:20201013T015032Z:2694176e-25b0-4d1f-84b8-834967e43075" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1653,10 +1515,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:28:17 GMT" + "Tue, 13 Oct 2020 01:50:32 GMT" ], "Content-Length": [ - "304" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1665,26 +1527,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 14\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzL2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdecae6f-f75e-46b3-8a7a-80cebe3155a4" + "3688d53b-6604-4954-af67-a94feafeb0d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -1695,19 +1557,19 @@ "no-cache" ], "x-ms-request-id": [ - "13025e76-f18e-402a-aa6a-9787512c4e5c" + "1e4caa03-7231-46b1-81db-b2af5e6257b3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "14973" ], "x-ms-correlation-request-id": [ - "a02028e3-6a68-42c1-afab-f249645a17a2" + "e7eca536-4607-42cd-90d4-75a760c4fffa" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062818Z:a02028e3-6a68-42c1-afab-f249645a17a2" + "NORTHEUROPE:20201013T015032Z:e7eca536-4607-42cd-90d4-75a760c4fffa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,10 +1578,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:28:17 GMT" + "Tue, 13 Oct 2020 01:50:32 GMT" ], "Content-Length": [ - "304" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1728,26 +1590,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 14\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzL2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16811758-90cb-46eb-a6e3-442707d447d4" + "183e5c74-7671-4791-926c-48c60dca744c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -1758,19 +1620,19 @@ "no-cache" ], "x-ms-request-id": [ - "01fde5ca-709d-4dda-825f-85918545e8b0" + "ee10844a-31bb-498f-ae70-f16a2a3bcad2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "14972" ], "x-ms-correlation-request-id": [ - "02a3ff44-64d2-4f0b-bf14-b5f2bea010c9" + "734658b7-2d09-480d-9262-244560d3edae" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062818Z:02a3ff44-64d2-4f0b-bf14-b5f2bea010c9" + "NORTHEUROPE:20201013T015032Z:734658b7-2d09-480d-9262-244560d3edae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1779,10 +1641,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:28:17 GMT" + "Tue, 13 Oct 2020 01:50:32 GMT" ], "Content-Length": [ - "304" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1791,20 +1653,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 14\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzL2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -1815,19 +1677,19 @@ "no-cache" ], "x-ms-request-id": [ - "b5eebdf2-527b-42f5-814a-c0f32eb2e178" + "b3748521-edd2-424b-aad2-8f961d4b1080" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "14970" ], "x-ms-correlation-request-id": [ - "461b494c-2703-4041-ac3c-49f516bba574" + "18a9566e-2cc1-45cf-add9-ed8d0b7ca6d4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062833Z:461b494c-2703-4041-ac3c-49f516bba574" + "NORTHEUROPE:20201013T015049Z:18a9566e-2cc1-45cf-add9-ed8d0b7ca6d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1836,10 +1698,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:28:33 GMT" + "Tue, 13 Oct 2020 01:50:49 GMT" ], "Content-Length": [ - "303" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1848,26 +1710,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzL2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1314232-8e03-4cc3-a5f0-979bab315b61" + "044d4ee4-9766-430f-aa3d-fd937acf595c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -1878,19 +1740,19 @@ "no-cache" ], "x-ms-request-id": [ - "75f3276a-a196-4ca9-b982-5293c9651a17" + "0e6317a7-4ab3-4515-919d-386f61301545" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "14969" ], "x-ms-correlation-request-id": [ - "8d9ac442-6187-4c37-8430-3829926c8b11" + "9da4758e-8b14-4aec-aebb-2c24a02933d6" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062833Z:8d9ac442-6187-4c37-8430-3829926c8b11" + "NORTHEUROPE:20201013T015049Z:9da4758e-8b14-4aec-aebb-2c24a02933d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1899,10 +1761,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:28:33 GMT" + "Tue, 13 Oct 2020 01:50:49 GMT" ], "Content-Length": [ - "303" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1911,32 +1773,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7\r\n },\r\n \"id\": \"/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzL2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 28\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cfd57079-27d9-455f-a7d0-fab2de85903c" + "65b9c293-f12f-417f-8d14-1af325683b27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "53" + "90" ] }, "ResponseHeaders": { @@ -1947,28 +1809,28 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/shortTermRetentionPolicyOperationResults/8da7a3df-47df-4431-b896-51ef35d4f5e8?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/9fd1c2dd-7937-4992-80df-1f06628b33f0?api-version=2020-02-02-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/shortTermRetentionPolicyAzureAsyncOperation/8da7a3df-47df-4431-b896-51ef35d4f5e8?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/9fd1c2dd-7937-4992-80df-1f06628b33f0?api-version=2020-02-02-preview" ], "x-ms-request-id": [ - "8da7a3df-47df-4431-b896-51ef35d4f5e8" + "9fd1c2dd-7937-4992-80df-1f06628b33f0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "5342af1c-6f70-40b4-8b4b-3132cc596fb0" + "91b224d8-a06d-466d-bd78-9d74d8cbbced" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062731Z:5342af1c-6f70-40b4-8b4b-3132cc596fb0" + "NORTHEUROPE:20201013T014942Z:91b224d8-a06d-466d-bd78-9d74d8cbbced" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1977,10 +1839,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:27:31 GMT" + "Tue, 13 Oct 2020 01:49:42 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1989,32 +1851,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T06:27:31.727Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T01:49:42.77Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzL2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 21\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "33200c39-a47f-4079-8a5c-0f69953db534" + "41f6038b-027b-43f1-970a-63f7e9fd236a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "53" + "90" ] }, "ResponseHeaders": { @@ -2025,28 +1887,28 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/shortTermRetentionPolicyOperationResults/d7b5a66c-064f-42db-91dc-b7855dd8cd62?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/d7c75e1c-3b30-4ab4-840a-51e4cebddfd0?api-version=2020-02-02-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/shortTermRetentionPolicyAzureAsyncOperation/d7b5a66c-064f-42db-91dc-b7855dd8cd62?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/d7c75e1c-3b30-4ab4-840a-51e4cebddfd0?api-version=2020-02-02-preview" ], "x-ms-request-id": [ - "d7b5a66c-064f-42db-91dc-b7855dd8cd62" + "d7c75e1c-3b30-4ab4-840a-51e4cebddfd0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "80732d74-9029-4c6b-8cee-4eb82fd50bb0" + "d51ccc3a-91e1-4218-a0cd-e042b1129cd9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062747Z:80732d74-9029-4c6b-8cee-4eb82fd50bb0" + "NORTHEUROPE:20201013T014959Z:d51ccc3a-91e1-4218-a0cd-e042b1129cd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2055,10 +1917,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:27:46 GMT" + "Tue, 13 Oct 2020 01:49:59 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2067,32 +1929,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T06:27:47.273Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T01:49:59.43Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzL2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 14\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b99ef296-57cf-49f1-bf5a-fdaa5fc6e7b0" + "9bea2b44-f82d-45e8-98da-c30d598e8d1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "53" + "90" ] }, "ResponseHeaders": { @@ -2103,28 +1965,28 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/shortTermRetentionPolicyOperationResults/9552a9d8-7f00-4faf-a4af-71a48c3ef57b?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/b6bb2d70-31f8-4a7c-a14f-e91da5cfafd9?api-version=2020-02-02-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/shortTermRetentionPolicyAzureAsyncOperation/9552a9d8-7f00-4faf-a4af-71a48c3ef57b?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/b6bb2d70-31f8-4a7c-a14f-e91da5cfafd9?api-version=2020-02-02-preview" ], "x-ms-request-id": [ - "9552a9d8-7f00-4faf-a4af-71a48c3ef57b" + "b6bb2d70-31f8-4a7c-a14f-e91da5cfafd9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "77a85809-d7f4-4c39-acce-22f0c002d0ea" + "12d33abe-73b2-4917-af82-c60db1bc6941" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062802Z:77a85809-d7f4-4c39-acce-22f0c002d0ea" + "NORTHEUROPE:20201013T015016Z:12d33abe-73b2-4917-af82-c60db1bc6941" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2133,10 +1995,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:28:02 GMT" + "Tue, 13 Oct 2020 01:50:16 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2145,32 +2007,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T06:28:02.727Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T01:50:16.37Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/servers/ps1428/databases/ps2503/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzMTQyOC9kYXRhYmFzZXMvcHMyNTAzL2JhY2t1cFNob3J0VGVybVJldGVudGlvblBvbGljaWVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d1fce0db-a8f4-42b6-b43e-2953f22fb699" + "ed1ebe80-322b-436c-97d9-7e1d631e7f1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "52" + "90" ] }, "ResponseHeaders": { @@ -2181,28 +2043,28 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/shortTermRetentionPolicyOperationResults/9a4ee7ed-d741-4db2-a95e-f3a3198c00c6?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/88be2c69-afb5-44ec-b14d-03f20aad5665?api-version=2020-02-02-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/shortTermRetentionPolicyAzureAsyncOperation/9a4ee7ed-d741-4db2-a95e-f3a3198c00c6?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/88be2c69-afb5-44ec-b14d-03f20aad5665?api-version=2020-02-02-preview" ], "x-ms-request-id": [ - "9a4ee7ed-d741-4db2-a95e-f3a3198c00c6" + "88be2c69-afb5-44ec-b14d-03f20aad5665" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "474b8308-dfc0-4525-92ce-ebc56b6eb100" + "73603b29-8225-4303-9d89-86b163bdbf78" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062818Z:474b8308-dfc0-4525-92ce-ebc56b6eb100" + "NORTHEUROPE:20201013T015033Z:73603b29-8225-4303-9d89-86b163bdbf78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2211,10 +2073,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:28:17 GMT" + "Tue, 13 Oct 2020 01:50:33 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2223,20 +2085,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-09-14T06:28:18.193Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T01:50:33.46Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/shortTermRetentionPolicyAzureAsyncOperation/8da7a3df-47df-4431-b896-51ef35d4f5e8?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzMi9zaG9ydFRlcm1SZXRlbnRpb25Qb2xpY3lBenVyZUFzeW5jT3BlcmF0aW9uLzhkYTdhM2RmLTQ3ZGYtNDQzMS1iODk2LTUxZWYzNWQ0ZjVlOD9hcGktdmVyc2lvbj0yMDIwLTAyLTAyLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/9fd1c2dd-7937-4992-80df-1f06628b33f0?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi85ZmQxYzJkZC03OTM3LTQ5OTItODBkZi0xZjA2NjI4YjMzZjA/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -2250,19 +2112,19 @@ "15" ], "x-ms-request-id": [ - "48e457f2-8b08-433c-afbb-225b63161c46" + "229f773a-16c1-456d-bb0b-770d3a64a084" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "14982" ], "x-ms-correlation-request-id": [ - "0d9de139-6848-4dc3-ae5f-bfab5b90caee" + "338ccfd6-abcd-4b90-972f-f049b72cc034" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062746Z:0d9de139-6848-4dc3-ae5f-bfab5b90caee" + "NORTHEUROPE:20201013T014958Z:338ccfd6-abcd-4b90-972f-f049b72cc034" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,10 +2133,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:27:46 GMT" + "Tue, 13 Oct 2020 01:49:58 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2283,20 +2145,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"8da7a3df-47df-4431-b896-51ef35d4f5e8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T06:27:31.727Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"9fd1c2dd-7937-4992-80df-1f06628b33f0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T01:49:42.77Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/shortTermRetentionPolicyAzureAsyncOperation/d7b5a66c-064f-42db-91dc-b7855dd8cd62?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzMi9zaG9ydFRlcm1SZXRlbnRpb25Qb2xpY3lBenVyZUFzeW5jT3BlcmF0aW9uL2Q3YjVhNjZjLTA2NGYtNDJkYi05MWRjLWI3ODU1ZGQ4Y2Q2Mj9hcGktdmVyc2lvbj0yMDIwLTAyLTAyLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/d7c75e1c-3b30-4ab4-840a-51e4cebddfd0?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi9kN2M3NWUxYy0zYjMwLTRhYjQtODQwYS01MWU0Y2ViZGRmZDA/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -2310,19 +2172,19 @@ "15" ], "x-ms-request-id": [ - "3869604f-3863-43e1-85eb-74a8e8f1011f" + "184ee287-e22b-4c7a-a6c9-2582232f93cc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "14979" ], "x-ms-correlation-request-id": [ - "a4bfc64c-4dac-4303-87e4-d9dcebbc94f3" + "2281d67b-1d69-48aa-bb93-592556cf1156" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062802Z:a4bfc64c-4dac-4303-87e4-d9dcebbc94f3" + "NORTHEUROPE:20201013T015014Z:2281d67b-1d69-48aa-bb93-592556cf1156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2331,10 +2193,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:28:01 GMT" + "Tue, 13 Oct 2020 01:50:14 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2343,20 +2205,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d7b5a66c-064f-42db-91dc-b7855dd8cd62\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T06:27:47.273Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"d7c75e1c-3b30-4ab4-840a-51e4cebddfd0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T01:49:59.43Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/shortTermRetentionPolicyAzureAsyncOperation/9552a9d8-7f00-4faf-a4af-71a48c3ef57b?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzMi9zaG9ydFRlcm1SZXRlbnRpb25Qb2xpY3lBenVyZUFzeW5jT3BlcmF0aW9uLzk1NTJhOWQ4LTdmMDAtNGZhZi1hNGFmLTcxYTQ4YzNlZjU3Yj9hcGktdmVyc2lvbj0yMDIwLTAyLTAyLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/b6bb2d70-31f8-4a7c-a14f-e91da5cfafd9?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi9iNmJiMmQ3MC0zMWY4LTRhN2MtYTE0Zi1lOTFkYTVjZmFmZDk/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -2370,19 +2232,19 @@ "15" ], "x-ms-request-id": [ - "7848d8b7-aeb2-4879-bc79-f415857f1e39" + "6031371c-f24e-4eb2-a284-015b6a0523e8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "14975" ], "x-ms-correlation-request-id": [ - "cbb57977-fda3-4dd8-80aa-08b28db534fd" + "af5c4d6b-cab0-45a1-9580-59f7a85f0f77" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062817Z:cbb57977-fda3-4dd8-80aa-08b28db534fd" + "NORTHEUROPE:20201013T015031Z:af5c4d6b-cab0-45a1-9580-59f7a85f0f77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2391,10 +2253,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:28:17 GMT" + "Tue, 13 Oct 2020 01:50:30 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2403,20 +2265,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9552a9d8-7f00-4faf-a4af-71a48c3ef57b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T06:28:02.727Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b6bb2d70-31f8-4a7c-a14f-e91da5cfafd9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T01:50:16.37Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourceGroups/ps8890/providers/Microsoft.Sql/locations/westus2/shortTermRetentionPolicyAzureAsyncOperation/9a4ee7ed-d741-4db2-a95e-f3a3198c00c6?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlR3JvdXBzL3BzODg5MC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvd2VzdHVzMi9zaG9ydFRlcm1SZXRlbnRpb25Qb2xpY3lBenVyZUFzeW5jT3BlcmF0aW9uLzlhNGVlN2VkLWQ3NDEtNGRiMi1hOTVlLWYzYTMxOThjMDBjNj9hcGktdmVyc2lvbj0yMDIwLTAyLTAyLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/88be2c69-afb5-44ec-b14d-03f20aad5665?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi84OGJlMmM2OS1hZmI1LTQ0ZWMtYjE0ZC0wM2YyMGFhZDU2NjU/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Sql.SqlManagementClient/1.44.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -2430,19 +2292,19 @@ "15" ], "x-ms-request-id": [ - "3c90ab08-6977-48ae-a923-7c39819c5f7a" + "ad1c1460-fcc8-442c-99d2-06874ea12459" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "14971" ], "x-ms-correlation-request-id": [ - "01d249be-ca58-4f8c-865f-4bfade994ad4" + "406b8ae7-9694-4346-bd8b-25a979c172d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062833Z:01d249be-ca58-4f8c-865f-4bfade994ad4" + "NORTHEUROPE:20201013T015048Z:406b8ae7-9694-4346-bd8b-25a979c172d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2451,10 +2313,10 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:28:33 GMT" + "Tue, 13 Oct 2020 01:50:48 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2463,26 +2325,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9a4ee7ed-d741-4db2-a95e-f3a3198c00c6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-09-14T06:28:18.193Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"88be2c69-afb5-44ec-b14d-03f20aad5665\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T01:50:33.46Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/resourcegroups/ps8890?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL3Jlc291cmNlZ3JvdXBzL3BzODg5MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f5a3091-f1a2-4e45-83d6-3a1ecd4bbe48" + "5d4fed3d-7be6-423f-8d52-77bfb1943ee4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -2493,136 +2355,28 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4OTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/6e4919ff-5bc4-4092-8386-fcb105d21b03?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "a26380e4-3807-426a-b688-34f0aab635c1" - ], - "x-ms-correlation-request-id": [ - "a26380e4-3807-426a-b688-34f0aab635c1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T062834Z:a26380e4-3807-426a-b688-34f0aab635c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 06:28:33 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4OTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE9UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4OTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/6e4919ff-5bc4-4092-8386-fcb105d21b03?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "de8eb074-5814-4cd3-8d70-508d82685ca6" - ], - "x-ms-correlation-request-id": [ - "de8eb074-5814-4cd3-8d70-508d82685ca6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T062849Z:de8eb074-5814-4cd3-8d70-508d82685ca6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 06:28:48 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4OTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE9UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" + "6e4919ff-5bc4-4092-8386-fcb105d21b03" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4OTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ - "17ee8b7a-c2ef-4c7e-bbfd-54d190a20de8" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "17ee8b7a-c2ef-4c7e-bbfd-54d190a20de8" + "1f47d704-7a90-4471-8b25-88cc2107eb00" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062904Z:17ee8b7a-c2ef-4c7e-bbfd-54d190a20de8" + "NORTHEUROPE:20201013T015050Z:1f47d704-7a90-4471-8b25-88cc2107eb00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2631,86 +2385,32 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:29:03 GMT" - ], - "Expires": [ - "-1" + "Tue, 13 Oct 2020 01:50:50 GMT" ], "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4OTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE9UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4OTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "8b580521-b2b5-4bf2-b7ca-44c8dab5e3c8" - ], - "x-ms-correlation-request-id": [ - "8b580521-b2b5-4bf2-b7ca-44c8dab5e3c8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T062919Z:8b580521-b2b5-4bf2-b7ca-44c8dab5e3c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "74" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 06:29:18 GMT" + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"operation\": \"DropLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T01:50:50.357Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4OTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE9UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/6e4919ff-5bc4-4092-8386-fcb105d21b03?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzZlNDkxOWZmLTViYzQtNDA5Mi04Mzg2LWZjYjEwNWQyMWIwMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -2720,80 +2420,23 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4OTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], "x-ms-request-id": [ - "c98421a3-e4f3-41b7-ba94-ad752ded9e27" - ], - "x-ms-correlation-request-id": [ - "c98421a3-e4f3-41b7-ba94-ad752ded9e27" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T062934Z:c98421a3-e4f3-41b7-ba94-ad752ded9e27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 14 Sep 2020 06:29:33 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4OTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE9UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4OTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" + "f803581e-2091-46db-8e1b-71945823cb94" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "14967" ], - "x-ms-request-id": [ - "d3dbcc57-5169-4c6a-b8d2-8ab39cddc364" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "d3dbcc57-5169-4c6a-b8d2-8ab39cddc364" + "061c5f47-5d0b-43fb-b6f3-2c618760f027" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T062949Z:d3dbcc57-5169-4c6a-b8d2-8ab39cddc364" + "NORTHEUROPE:20201013T015105Z:061c5f47-5d0b-43fb-b6f3-2c618760f027" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2802,86 +2445,32 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:29:48 GMT" - ], - "Expires": [ - "-1" + "Tue, 13 Oct 2020 01:51:04 GMT" ], "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4OTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE9UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4OTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "4e830a50-b71d-4018-9fd4-523d1da6e2e6" - ], - "x-ms-correlation-request-id": [ - "4e830a50-b71d-4018-9fd4-523d1da6e2e6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T063004Z:4e830a50-b71d-4018-9fd4-523d1da6e2e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "107" ], - "Date": [ - "Mon, 14 Sep 2020 06:30:03 GMT" + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"6e4919ff-5bc4-4092-8386-fcb105d21b03\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T01:50:50.357Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4OTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE9UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/6e4919ff-5bc4-4092-8386-fcb105d21b03?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VPcGVyYXRpb25SZXN1bHRzLzZlNDkxOWZmLTViYzQtNDA5Mi04Mzg2LWZjYjEwNWQyMWIwMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -2891,68 +2480,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], "x-ms-request-id": [ - "fed0f643-b67a-4c8b-8bd1-5343b43dc830" - ], - "x-ms-correlation-request-id": [ - "fed0f643-b67a-4c8b-8bd1-5343b43dc830" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200914T063019Z:fed0f643-b67a-4c8b-8bd1-5343b43dc830" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "a60741f0-e217-4415-ade0-7f02f1d36d0f" ], - "Date": [ - "Mon, 14 Sep 2020 06:30:19 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/412b782d-2511-4c6d-98f2-3ea01b1c83c3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4OTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDEyYjc4MmQtMjUxMS00YzZkLTk4ZjItM2VhMDFiMWM4M2MzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE9UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.14393.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "5c2bdf91-b8b7-4f3b-a72d-f55b63556fdd" + "14966" ], "x-ms-correlation-request-id": [ - "5c2bdf91-b8b7-4f3b-a72d-f55b63556fdd" + "da41db13-fb54-4aeb-8726-cae2b0069dd4" ], "x-ms-routing-request-id": [ - "WESTUS:20200914T063019Z:5c2bdf91-b8b7-4f3b-a72d-f55b63556fdd" + "NORTHEUROPE:20201013T015106Z:da41db13-fb54-4aeb-8726-cae2b0069dd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2961,7 +2502,7 @@ "nosniff" ], "Date": [ - "Mon, 14 Sep 2020 06:30:19 GMT" + "Tue, 13 Oct 2020 01:51:06 GMT" ], "Expires": [ "-1" @@ -2976,12 +2517,10 @@ ], "Names": { "Test-ShortTermRetentionPolicy": [ - "ps8890", - "ps1428", - "ps2503" + "ps5047" ] }, "Variables": { - "SubscriptionId": "412b782d-2511-4c6d-98f2-3ea01b1c83c3" + "SubscriptionId": "4b6aaaf2-6fd8-418b-a06d-6ede39a32270" } } \ No newline at end of file diff --git a/src/Sql/Sql/Database Backup/Cmdlet/GetAzureRmSqlDatabaseBackupShortTermRetentionPolicy.cs b/src/Sql/Sql/Database Backup/Cmdlet/GetAzureSqlDatabaseBackupShortTermRetentionPolicy.cs similarity index 100% rename from src/Sql/Sql/Database Backup/Cmdlet/GetAzureRmSqlDatabaseBackupShortTermRetentionPolicy.cs rename to src/Sql/Sql/Database Backup/Cmdlet/GetAzureSqlDatabaseBackupShortTermRetentionPolicy.cs diff --git a/src/Sql/Sql/Database Backup/Cmdlet/SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy.cs b/src/Sql/Sql/Database Backup/Cmdlet/SetAzureSqlDatabaseBackupShortTermRetentionPolicy.cs similarity index 87% rename from src/Sql/Sql/Database Backup/Cmdlet/SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy.cs rename to src/Sql/Sql/Database Backup/Cmdlet/SetAzureSqlDatabaseBackupShortTermRetentionPolicy.cs index acb83db313a0..0cdec7ec894d 100644 --- a/src/Sql/Sql/Database Backup/Cmdlet/SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy.cs +++ b/src/Sql/Sql/Database Backup/Cmdlet/SetAzureSqlDatabaseBackupShortTermRetentionPolicy.cs @@ -16,6 +16,7 @@ using System.Linq; using System.Management.Automation; using Microsoft.Azure.Commands.Sql.Backup.Model; +using Microsoft.WindowsAzure.Commands.Utilities.Common; namespace Microsoft.Azure.Commands.Sql.Backup.Cmdlet { @@ -28,16 +29,16 @@ public class SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy : AzureSqlDatab /// /// Gets or sets backup retention days. /// - [Parameter(Mandatory = true, + [Parameter(Mandatory = false, HelpMessage = "The backup retention setting, in days.")] - public int? RetentionDays { get; set; } + public int RetentionDays { get; set; } /// /// Gets or sets differential backup interval hours. /// - [Parameter(Mandatory = true, + [Parameter(Mandatory = false, HelpMessage = "The differential backup interval, in hours.")] - public int? DiffBackupIntervalInHours { get; set; } + public int DiffBackupIntervalInHours { get; set; } /// /// Get the entities from the service @@ -69,7 +70,10 @@ protected override IEnumerable c.RetentionDays) ? RetentionDays : null as int?, + diffBackupIntervalInHours: this.IsParameterBound(c => c.DiffBackupIntervalInHours) ? DiffBackupIntervalInHours : null as int?) + ) }; } diff --git a/src/Sql/Sql/help/Get-AzSqlDatabaseBackupShortTermRetentionPolicy.md b/src/Sql/Sql/help/Get-AzSqlDatabaseBackupShortTermRetentionPolicy.md index 8396c5b525ec..fe2172229686 100644 --- a/src/Sql/Sql/help/Get-AzSqlDatabaseBackupShortTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Get-AzSqlDatabaseBackupShortTermRetentionPolicy.md @@ -84,7 +84,7 @@ Parameter Sets: PolicyByResourceServerDatabaseSet Aliases: Required: True -Position: 2 +Position: Named Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False @@ -114,7 +114,7 @@ Parameter Sets: PolicyByResourceServerDatabaseSet Aliases: Required: True -Position: 0 +Position: Named Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False @@ -144,7 +144,7 @@ Parameter Sets: PolicyByResourceServerDatabaseSet Aliases: Required: True -Position: 1 +Position: Named Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False diff --git a/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md b/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md index 7819208144db..ecebe62503e1 100644 --- a/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md @@ -14,22 +14,20 @@ Sets a backup short term retention policy. ### PolicyByResourceServerDatabaseSet (Default) ``` -Set-AzSqlDatabaseBackupShortTermRetentionPolicy [-RetentionDays] [-DiffBackupIntervalInHours] - [-ResourceGroupName] [-ServerName] [-DatabaseName] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] +Set-AzSqlDatabaseBackupShortTermRetentionPolicy [-ResourceGroupName] [-ServerName] [-DatabaseName] +[-RetentionDays] [-DiffBackupIntervalInHours] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### PolicyByInputObjectSet ``` -Set-AzSqlDatabaseBackupShortTermRetentionPolicy [-RetentionDays] [-DiffBackupIntervalInHours] - -AzureSqlDatabaseObject [-DefaultProfile ] [-WhatIf] - [-Confirm] [] +Set-AzSqlDatabaseBackupShortTermRetentionPolicy [-DatabaseName] [-RetentionDays] [-DiffBackupIntervalInHours] +[-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### PolicyByResourceIdSet ``` -Set-AzSqlDatabaseBackupShortTermRetentionPolicy [-RetentionDays] [-DiffBackupIntervalInHours] - -ResourceId [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Set-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceId [-RetentionDays] [-DiffBackupIntervalInHours] +[-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -40,23 +38,23 @@ The policy is the retention period in days and differential backup interval in h ### Example 1 ```powershell -PS C:\> Set-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName resourcegroup01 -ServerName server01 -DatabaseName database01 -RetentionDays 35 -DiffBackupIntervalInHours 24 +PS C:\> Set-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName resourcegroup01 -ServerName server01 -DatabaseName database01 -RetentionDays 6 -DiffBackupIntervalInHours 24 ResourceGroupName ServerName DatabaseName RetentionDays DiffBackupIntervalInHours ----------------- ---------- ------------ ------------- ------------------------- -resourcegroup01 server01 database01 7 24 +resourcegroup01 server01 database01 6 24 ``` -This command sets the short term retention policy for database01 to 7 retention days and 24 differential backup interval hours. +This command sets the short term retention policy for database01 to 6 retention days and 24 differential backup interval hours. ### Example 2 ```powershell -PS C:\> Get-AzSqlDatabase -ResourceGroupName resourcegroup01 -ServerName server01 -DatabaseName database01 | Set-AzSqlDatabaseBackupShortTermRetentionPolicy -RetentionDays 35 -DiffBackupIntervalInHours 24 +PS C:\> Get-AzSqlDatabase -ResourceGroupName resourcegroup01 -ServerName server01 -DatabaseName database01 | Set-AzSqlDatabaseBackupShortTermRetentionPolicy -RetentionDays 5 -DiffBackupIntervalInHours 12 ResourceGroupName ServerName DatabaseName RetentionDays DiffBackupIntervalInHours ----------------- ---------- ------------ ------------- ------------------------ -resourcegroup01 server01 database01 7 24 +resourcegroup01 server01 database01 5 12 ``` -This command sets the short term retention policy for database01 to 7 retention days and 24 differential backup interval hours via piping in a database object. +This command sets the short term retention policy for database01 to 5 retention days and 12 differential backup interval hours via piping in a database object. ## PARAMETERS @@ -84,7 +82,7 @@ Parameter Sets: PolicyByResourceServerDatabaseSet Aliases: Required: True -Position: 2 +Position: Named Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False @@ -114,7 +112,7 @@ Parameter Sets: PolicyByResourceServerDatabaseSet Aliases: Required: True -Position: 0 +Position: Named Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False @@ -172,7 +170,7 @@ Parameter Sets: PolicyByResourceServerDatabaseSet Aliases: Required: True -Position: 1 +Position: Named Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False From 9aefa964ee2490a1a54627b2e9a27a59ab464bae Mon Sep 17 00:00:00 2001 From: Lillian Liu Date: Tue, 13 Oct 2020 12:48:39 -0700 Subject: [PATCH 4/6] Removed .Value to allowe either retentionDays or diffBackupInterval can be set individually. Added its related scenario tests and re-record; Added one related example; --- .../ScenarioTests/DatabaseBackupTests.ps1 | 23 +- .../TestShortTermRetentionPolicy.json | 946 +++++++++--------- ...baseBackupShortTermRetentionPolicyModel.cs | 4 +- ...lDatabaseBackupShortTermRetentionPolicy.md | 94 +- 4 files changed, 562 insertions(+), 505 deletions(-) diff --git a/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 b/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 index 862531f021b1..2a4ec02c8b3e 100644 --- a/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 +++ b/src/Sql/Sql.Test/ScenarioTests/DatabaseBackupTests.ps1 @@ -453,9 +453,9 @@ function Test-ShortTermRetentionPolicy $databaseName = Get-DatabaseName $db = New-AzSqlDatabase -ResourceGroupName $rg -ServerName $server -DatabaseName $databaseName -Force:$true - # Test GET + # Test GET default values. $defaultRetention = 7 - # After we configure Backup Service's default DiffBackupIntervalInHours as 24 hours for new created databases, $defaultDiffbackupinterval should be 24. + # After we configure Backup Service's default DiffBackupIntervalInHours to 24 hours for new created databases, $defaultDiffbackupinterval should be changed to 24. $defaultDiffbackupinterval = 12 $policy = Get-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName $rg -ServerName $server -DatabaseName $databaseName Assert-AreEqual $policy.Count 1 @@ -466,14 +466,25 @@ function Test-ShortTermRetentionPolicy $retention = 6 $diffbackupinterval = 24 $policy = Set-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName $rg -ServerName $server -DatabaseName $databaseName -RetentionDays $retention -DiffBackupIntervalInHours $diffbackupinterval - Assert-AreEqual $policy.Count 1 Assert-AreEqual $retention $policy[0].RetentionDays Assert-AreEqual $diffbackupinterval $policy[0].DiffBackupIntervalInHours + $retentionOnly = 5 + $policy = Set-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName $rg -ServerName $server -DatabaseName $databaseName -RetentionDays $retentionOnly + Assert-AreEqual $policy.Count 1 + Assert-AreEqual $retentionOnly $policy[0].RetentionDays + Assert-AreEqual $diffbackupinterval $policy[0].DiffBackupIntervalInHours + + $diffbackupintervalOnly = 12 + $policy = Set-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName $rg -ServerName $server -DatabaseName $databaseName -DiffBackupIntervalInHours $diffbackupintervalOnly + Assert-AreEqual $policy.Count 1 + Assert-AreEqual $retentionOnly $policy[0].RetentionDays + Assert-AreEqual $diffbackupintervalOnly $policy[0].DiffBackupIntervalInHours + # Test InputObject $retention = 7 - $diffbackupinterval = 12 + $diffbackupinterval = 24 $policy = Set-AzSqlDatabaseBackupShortTermRetentionPolicy -AzureSqlDatabase $db -RetentionDays $retention -DiffBackupIntervalInHours $diffbackupinterval Assert-AreEqual 1 $policy.Count Assert-AreEqual $retention $policy[0].RetentionDays @@ -485,7 +496,7 @@ function Test-ShortTermRetentionPolicy # Test ResourceId $retention = 6 - $diffbackupinterval = 24 + $diffbackupinterval = 12 $resourceId = $db.ResourceId + "/backupShortTermRetentionPolicies/default" $policy = Set-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceId $resourceId -RetentionDays $retention -DiffBackupIntervalInHours $diffbackupinterval Assert-AreEqual 1 $policy.Count @@ -498,7 +509,7 @@ function Test-ShortTermRetentionPolicy # Test Piping $retention = 7 - $diffbackupinterval = 12 + $diffbackupinterval = 24 $policy = $db | Set-AzSqlDatabaseBackupShortTermRetentionPolicy -RetentionDays $retention -DiffBackupIntervalInHours $diffbackupinterval Assert-AreEqual 1 $policy.Count Assert-AreEqual $retention $policy[0].RetentionDays diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests/TestShortTermRetentionPolicy.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests/TestShortTermRetentionPolicy.json index b8624c7c87ad..406223fc081d 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests/TestShortTermRetentionPolicy.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests/TestShortTermRetentionPolicy.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b152e1b-4ce0-443d-98f9-b5a702b97fd4" + "067c2c95-e73b-4ed9-a36f-76ce283d84e9" ], "Accept-Language": [ "en-US" @@ -27,7 +27,7 @@ "no-cache" ], "x-ms-request-id": [ - "55417be7-ced5-4294-9e07-bec665d09505" + "7466824c-6f23-4903-a1b0-01682d2e63a2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -36,10 +36,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "124dac65-4090-4b74-8b31-7c754bd4ad7b" + "82204484-cec2-4f6e-9c01-6962cbc9333d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014650Z:124dac65-4090-4b74-8b31-7c754bd4ad7b" + "NORTHEUROPE:20201013T192917Z:82204484-cec2-4f6e-9c01-6962cbc9333d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:46:49 GMT" + "Tue, 13 Oct 2020 19:29:17 GMT" ], "Content-Length": [ "492" @@ -70,7 +70,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "665b1ee0-335d-4565-ade9-9992852b9578" + "0df94c9e-d372-4ca8-872a-ce212aa737e9" ], "Accept-Language": [ "en-US" @@ -90,7 +90,7 @@ "no-cache" ], "x-ms-request-id": [ - "f242778a-6822-4dac-b689-b10c34050743" + "d0f8109f-dd2a-48b2-ba25-b7e530ac4826" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -99,10 +99,10 @@ "14997" ], "x-ms-correlation-request-id": [ - "6a6a3615-7d22-4d9b-bd24-45c1302aa715" + "65a08af8-d415-4b3b-9cc8-90b4ac4985b1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014650Z:6a6a3615-7d22-4d9b-bd24-45c1302aa715" + "NORTHEUROPE:20201013T192918Z:65a08af8-d415-4b3b-9cc8-90b4ac4985b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:46:49 GMT" + "Tue, 13 Oct 2020 19:29:17 GMT" ], "Content-Length": [ "492" @@ -127,13 +127,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45a58a31-1feb-4a3d-b8d4-79870a40ebce" + "ddeb5ddf-1406-48fe-b3d6-454ca240a5e1" ], "Accept-Language": [ "en-US" @@ -156,13 +156,13 @@ "gateway" ], "x-ms-request-id": [ - "1f6d426c-9276-41a3-a31d-fd1383e5c68f" + "9ab6e8ee-163d-4d82-8835-deb3d6f285f5" ], "x-ms-correlation-request-id": [ - "1f6d426c-9276-41a3-a31d-fd1383e5c68f" + "9ab6e8ee-163d-4d82-8835-deb3d6f285f5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014650Z:1f6d426c-9276-41a3-a31d-fd1383e5c68f" + "NORTHEUROPE:20201013T192918Z:9ab6e8ee-163d-4d82-8835-deb3d6f285f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:46:49 GMT" + "Tue, 13 Oct 2020 19:29:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,12 +183,12 @@ "257" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047' under resource group 'PowershellStageResourceGroup' 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.Sql/servers/pssqlserverfortest/databases/ps3167' under resource group 'PowershellStageResourceGroup' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -207,19 +207,19 @@ "no-cache" ], "x-ms-request-id": [ - "1f1483c9-e491-48de-acca-b58e3033991e" + "3ee55165-400d-4b1e-a5de-b4818dd122ae" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14993" ], "x-ms-correlation-request-id": [ - "9c365f09-a786-4841-a0ff-d552fd35bec3" + "7cf1b508-bd52-48b3-b807-38ce66d5d743" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014941Z:9c365f09-a786-4841-a0ff-d552fd35bec3" + "NORTHEUROPE:20201013T193007Z:7cf1b508-bd52-48b3-b807-38ce66d5d743" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -228,10 +228,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:49:41 GMT" + "Tue, 13 Oct 2020 19:30:07 GMT" ], "Content-Length": [ - "1021" + "1023" ], "Content-Type": [ "application/json; charset=utf-8" @@ -240,17 +240,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"1fc4bcfe-79d1-4080-b68a-152d10d7a1af\",\r\n \"creationDate\": \"2020-10-13T01:49:27.43Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307921510,\r\n \"earliestRestoreDate\": \"2020-10-13T02:19:27.43Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047\",\r\n \"name\": \"ps5047\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"b5cc36b9-f17c-477d-9e8d-0003860db2bb\",\r\n \"creationDate\": \"2020-10-13T19:30:01.583Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307921510,\r\n \"earliestRestoreDate\": \"2020-10-13T20:00:01.583Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167\",\r\n \"name\": \"ps3167\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2b17cf3-46b6-4270-b2b7-3ea0415cfad8" + "05297d83-38d4-41ef-b428-395336b9ba14" ], "Accept-Language": [ "en-US" @@ -270,19 +270,19 @@ "no-cache" ], "x-ms-request-id": [ - "46925022-f69b-4b77-af57-72515b6ca2b2" + "41b4e68d-f6d0-4d00-8698-37b906f1b24b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14970" ], "x-ms-correlation-request-id": [ - "646755f8-86e9-4548-a59b-01f8c7126534" + "cec47472-fdb8-4464-97bb-46c51222877a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015049Z:646755f8-86e9-4548-a59b-01f8c7126534" + "NORTHEUROPE:20201013T193148Z:cec47472-fdb8-4464-97bb-46c51222877a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,10 +291,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:50:49 GMT" + "Tue, 13 Oct 2020 19:31:48 GMT" ], "Content-Length": [ - "1021" + "1023" ], "Content-Type": [ "application/json; charset=utf-8" @@ -303,17 +303,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"1fc4bcfe-79d1-4080-b68a-152d10d7a1af\",\r\n \"creationDate\": \"2020-10-13T01:49:27.43Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307921510,\r\n \"earliestRestoreDate\": \"2020-10-13T02:19:27.43Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047\",\r\n \"name\": \"ps5047\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"b5cc36b9-f17c-477d-9e8d-0003860db2bb\",\r\n \"creationDate\": \"2020-10-13T19:30:01.583Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307921510,\r\n \"earliestRestoreDate\": \"2020-10-13T20:00:01.583Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167\",\r\n \"name\": \"ps3167\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "377e8ed1-d317-4ebc-9b09-7564d0f08c64" + "63fc2c3d-b571-4c33-a9c7-38b7d9cd47f9" ], "Accept-Language": [ "en-US" @@ -339,16 +339,16 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/b42324ef-de24-4096-a0dc-8a66cc5f8f68?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/b42324ef-de24-4096-a0dc-8a66cc5f8f68?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "3c286185-dbb8-4e4a-8ad0-cd7b0dd39532" + "b42324ef-de24-4096-a0dc-8a66cc5f8f68" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -357,10 +357,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "99e83d0f-aaa6-4adf-9f74-5f868bf264b1" + "d10ee8ec-6ec2-496a-b9cc-4cb06278c229" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014652Z:99e83d0f-aaa6-4adf-9f74-5f868bf264b1" + "NORTHEUROPE:20201013T192921Z:d10ee8ec-6ec2-496a-b9cc-4cb06278c229" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,7 +369,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:46:52 GMT" + "Tue, 13 Oct 2020 19:29:20 GMT" ], "Content-Length": [ "76" @@ -381,12 +381,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T19:29:20.863Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/b42324ef-de24-4096-a0dc-8a66cc5f8f68?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2I0MjMyNGVmLWRlMjQtNDA5Ni1hMGRjLThhNjZjYzVmOGY2OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -408,7 +408,7 @@ "15" ], "x-ms-request-id": [ - "36e0574a-6789-413d-947f-352441500292" + "b17eb0c9-de90-4c4b-a1f0-00045e4a0170" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -417,10 +417,10 @@ "14996" ], "x-ms-correlation-request-id": [ - "bae9b9e0-055f-4d2f-a147-94300dbf3b70" + "49df530f-757f-42a2-ba65-875bde869cef" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014707Z:bae9b9e0-055f-4d2f-a147-94300dbf3b70" + "NORTHEUROPE:20201013T192936Z:49df530f-757f-42a2-ba65-875bde869cef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,7 +429,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:47:07 GMT" + "Tue, 13 Oct 2020 19:29:36 GMT" ], "Content-Length": [ "108" @@ -441,12 +441,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b42324ef-de24-4096-a0dc-8a66cc5f8f68\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T19:29:20.863Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/b42324ef-de24-4096-a0dc-8a66cc5f8f68?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2I0MjMyNGVmLWRlMjQtNDA5Ni1hMGRjLThhNjZjYzVmOGY2OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -468,7 +468,7 @@ "15" ], "x-ms-request-id": [ - "d91151d5-d836-4677-bd03-630b553e18b8" + "6c62fe3d-562f-46b3-bec8-b15d86d9dff9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -477,10 +477,10 @@ "14995" ], "x-ms-correlation-request-id": [ - "55745186-032e-43ea-9aa6-57ea8d52bc49" + "5338fe97-a43b-41e6-b0fa-37cada408520" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014723Z:55745186-032e-43ea-9aa6-57ea8d52bc49" + "NORTHEUROPE:20201013T192951Z:5338fe97-a43b-41e6-b0fa-37cada408520" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -489,7 +489,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:47:23 GMT" + "Tue, 13 Oct 2020 19:29:51 GMT" ], "Content-Length": [ "108" @@ -501,12 +501,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b42324ef-de24-4096-a0dc-8a66cc5f8f68\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T19:29:20.863Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/b42324ef-de24-4096-a0dc-8a66cc5f8f68?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2I0MjMyNGVmLWRlMjQtNDA5Ni1hMGRjLThhNjZjYzVmOGY2OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -528,7 +528,7 @@ "15" ], "x-ms-request-id": [ - "5ff974ae-8794-4bcf-9f90-79c47cb209a8" + "ace5f094-8fa7-4b64-9dcf-2fdaebaca520" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -537,10 +537,10 @@ "14994" ], "x-ms-correlation-request-id": [ - "35dc9809-3f33-4250-8aea-b6efe8a21a09" + "2c6e70c0-1053-4d34-9d84-ca85dda9dcfb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014738Z:35dc9809-3f33-4250-8aea-b6efe8a21a09" + "NORTHEUROPE:20201013T193007Z:2c6e70c0-1053-4d34-9d84-ca85dda9dcfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -549,10 +549,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:47:38 GMT" + "Tue, 13 Oct 2020 19:30:06 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -561,15 +561,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"b42324ef-de24-4096-a0dc-8a66cc5f8f68\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T19:29:20.863Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "da381e02-3990-4eda-8698-e313b484e877" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29220.03", "OSName/Windows", @@ -584,23 +590,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "d40a9f21-2923-44d1-bffa-77413ade887a" + "c6f196c4-c483-4991-83ef-bae0ae8ce05a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14992" ], "x-ms-correlation-request-id": [ - "e15e77c7-3e57-4108-96eb-9957a2ca43ee" + "7dd0a74c-7e6d-4e91-8453-944957515d98" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014753Z:e15e77c7-3e57-4108-96eb-9957a2ca43ee" + "NORTHEUROPE:20201013T193007Z:7dd0a74c-7e6d-4e91-8453-944957515d98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -609,10 +612,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:47:53 GMT" + "Tue, 13 Oct 2020 19:30:07 GMT" ], "Content-Length": [ - "108" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -621,15 +624,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "68bf1f92-8abb-48bc-8f67-52ada49d5d02" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29220.03", "OSName/Windows", @@ -644,23 +653,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "4074284f-07d1-4041-ad78-dc14432f6714" + "09965234-65fc-405f-b23e-d1ce247ff70f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14991" ], "x-ms-correlation-request-id": [ - "31090405-0206-4921-8f80-43aabb840f2d" + "7a876dfc-f248-4f23-9655-e85fc20b3b95" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014809Z:31090405-0206-4921-8f80-43aabb840f2d" + "NORTHEUROPE:20201013T193008Z:7a876dfc-f248-4f23-9655-e85fc20b3b95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,10 +675,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:48:08 GMT" + "Tue, 13 Oct 2020 19:30:07 GMT" ], "Content-Length": [ - "108" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -681,12 +687,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -704,23 +710,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "b891daf1-380b-4d71-b639-4ef0114ba4d9" + "6a15302d-65f7-441e-ab3f-8fa9cfd17b75" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14989" ], "x-ms-correlation-request-id": [ - "2c50b5fc-0877-45c9-adde-0920a2614bde" + "aadd9ddc-6e4e-4246-83d6-bf72a4cf911c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014824Z:2c50b5fc-0877-45c9-adde-0920a2614bde" + "NORTHEUROPE:20201013T193024Z:aadd9ddc-6e4e-4246-83d6-bf72a4cf911c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -729,10 +732,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:48:23 GMT" + "Tue, 13 Oct 2020 19:30:24 GMT" ], "Content-Length": [ - "108" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -741,15 +744,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0a41cc19-15b0-4072-b2ac-68e4d19e21c1" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29220.03", "OSName/Windows", @@ -764,23 +773,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "d9b694aa-0632-4c5e-ae98-f8e63137fb87" + "f58c61cd-740a-46a3-a6ec-a9cc754bebd5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14988" ], "x-ms-correlation-request-id": [ - "67a63662-8914-49fa-90da-4e042f21f709" + "44c18ff5-ad67-4aaf-abde-9ff3988e82bc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014839Z:67a63662-8914-49fa-90da-4e042f21f709" + "NORTHEUROPE:20201013T193024Z:44c18ff5-ad67-4aaf-abde-9ff3988e82bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,10 +795,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:48:38 GMT" + "Tue, 13 Oct 2020 19:30:24 GMT" ], "Content-Length": [ - "108" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -801,12 +807,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -824,23 +830,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "3a02f917-ec97-4844-a6bf-0a2fb6027177" + "af760f94-fc48-4c3d-b7e2-c66a8e0b88c9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14986" ], "x-ms-correlation-request-id": [ - "6b935e8d-a276-4191-82a1-c1e5a454baec" + "87d3b5c3-01c4-4636-a193-b26aa595830b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014855Z:6b935e8d-a276-4191-82a1-c1e5a454baec" + "NORTHEUROPE:20201013T193041Z:87d3b5c3-01c4-4636-a193-b26aa595830b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,10 +852,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:48:55 GMT" + "Tue, 13 Oct 2020 19:30:41 GMT" ], "Content-Length": [ - "108" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -861,15 +864,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 5,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fb2db7fb-a651-46c1-8cb9-8615d6c2ff37" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29220.03", "OSName/Windows", @@ -884,23 +893,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "673ef536-1926-45a2-b1b3-8b175a162f81" + "caa3b102-4abd-4e73-b71d-785f6ffe1142" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14985" ], "x-ms-correlation-request-id": [ - "e8e9c817-fad8-4fc9-8f26-5587fb9c9fca" + "7cca74a1-04fc-464b-84ce-1749f09ce571" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014910Z:e8e9c817-fad8-4fc9-8f26-5587fb9c9fca" + "NORTHEUROPE:20201013T193041Z:7cca74a1-04fc-464b-84ce-1749f09ce571" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -909,10 +915,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:49:09 GMT" + "Tue, 13 Oct 2020 19:30:41 GMT" ], "Content-Length": [ - "108" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -921,12 +927,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 5,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -944,23 +950,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "8b38e23b-f1da-4798-93da-ff48ff4367e3" + "163697e7-2c8d-454f-a179-424b409e7baa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14983" ], "x-ms-correlation-request-id": [ - "a6b10ed6-3308-4f20-a1b2-843f2b41127d" + "4dee86ba-46f4-41eb-b6cd-51b19bd28771" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014925Z:a6b10ed6-3308-4f20-a1b2-843f2b41127d" + "NORTHEUROPE:20201013T193057Z:4dee86ba-46f4-41eb-b6cd-51b19bd28771" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,10 +972,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:49:25 GMT" + "Tue, 13 Oct 2020 19:30:57 GMT" ], "Content-Length": [ - "108" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -981,15 +984,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 5,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/3c286185-dbb8-4e4a-8ad0-cd7b0dd39532?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzNjMjg2MTg1LWRiYjgtNGU0YS04YWQwLWNkN2IwZGQzOTUzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "86ef6232-3245-482f-aab4-abc0bb7f96e6" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29220.03", "OSName/Windows", @@ -1004,23 +1013,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "15" - ], "x-ms-request-id": [ - "a2a9520c-95d5-4912-a3c6-6c347c6fdcd3" + "e7e67294-fc83-4df8-a8cb-231d7556c1fd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14982" ], "x-ms-correlation-request-id": [ - "e330f4a6-eeaa-41a2-879a-2e7ba5e7eb8f" + "d026af39-cbf2-4edb-b69d-b502edc9db28" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014941Z:e330f4a6-eeaa-41a2-879a-2e7ba5e7eb8f" + "NORTHEUROPE:20201013T193057Z:d026af39-cbf2-4edb-b69d-b502edc9db28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1029,10 +1035,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:49:40 GMT" + "Tue, 13 Oct 2020 19:30:57 GMT" ], "Content-Length": [ - "107" + "368" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1041,21 +1047,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"3c286185-dbb8-4e4a-8ad0-cd7b0dd39532\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T01:46:52.333Z\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 5,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "75efa0b6-1af4-4e92-89df-a3f73921ed28" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29220.03", "OSName/Windows", @@ -1071,19 +1071,19 @@ "no-cache" ], "x-ms-request-id": [ - "ff5f7c29-edf5-4406-8ddc-e4c2b227d7d9" + "912eb521-22e5-4dff-8c89-807f122020e9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14980" ], "x-ms-correlation-request-id": [ - "d8e30633-761a-4a80-9179-38e87fd1d1b3" + "eb9c9138-411c-4ae9-b1d8-5cd13d4db2b8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014941Z:d8e30633-761a-4a80-9179-38e87fd1d1b3" + "NORTHEUROPE:20201013T193114Z:eb9c9138-411c-4ae9-b1d8-5cd13d4db2b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1092,7 +1092,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:49:41 GMT" + "Tue, 13 Oct 2020 19:31:13 GMT" ], "Content-Length": [ "368" @@ -1104,17 +1104,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "971598fa-d409-46c6-9ad3-46ff36e76dd9" + "b324becc-772a-4e09-85bc-bf04c28c01ac" ], "Accept-Language": [ "en-US" @@ -1134,19 +1134,19 @@ "no-cache" ], "x-ms-request-id": [ - "00917945-1218-40c3-9601-e03df0a6d818" + "bc8fa906-df7f-4751-b8a6-be4f07989dad" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14979" ], "x-ms-correlation-request-id": [ - "26a7f4e0-5c0d-47e4-a94f-8c4ab9e1e97a" + "5d9dbf43-cda1-45f3-833d-704f514b729a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014942Z:26a7f4e0-5c0d-47e4-a94f-8c4ab9e1e97a" + "NORTHEUROPE:20201013T193114Z:5d9dbf43-cda1-45f3-833d-704f514b729a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1155,7 +1155,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:49:41 GMT" + "Tue, 13 Oct 2020 19:31:13 GMT" ], "Content-Length": [ "368" @@ -1167,15 +1167,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2440946c-a879-4ce1-980e-5083d27d02b6" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29220.03", "OSName/Windows", @@ -1191,19 +1197,19 @@ "no-cache" ], "x-ms-request-id": [ - "bda90c79-b308-486f-95e7-3fcd38c33564" + "97cf3d5b-a912-4458-85bb-f70b5ebe0154" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14978" ], "x-ms-correlation-request-id": [ - "33b0eece-20ae-4943-84d2-29916083fef4" + "df1553d1-3062-4aa4-90f0-d97ed97d56e5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014958Z:33b0eece-20ae-4943-84d2-29916083fef4" + "NORTHEUROPE:20201013T193114Z:df1553d1-3062-4aa4-90f0-d97ed97d56e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1212,7 +1218,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:49:58 GMT" + "Tue, 13 Oct 2020 19:31:13 GMT" ], "Content-Length": [ "368" @@ -1224,21 +1230,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "51009822-bc7c-4618-bf41-c2a25da93255" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29220.03", "OSName/Windows", @@ -1254,19 +1254,19 @@ "no-cache" ], "x-ms-request-id": [ - "c8efa544-22be-4514-8265-22172a2d833b" + "47278608-59c8-4803-a75a-10f379d1e05c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14976" ], "x-ms-correlation-request-id": [ - "d962bdf9-2504-49f1-b3bb-7608b69ca962" + "e8a34f9c-4588-43e8-85cc-a39b8f52cf28" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014959Z:d962bdf9-2504-49f1-b3bb-7608b69ca962" + "NORTHEUROPE:20201013T193131Z:e8a34f9c-4588-43e8-85cc-a39b8f52cf28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1275,7 +1275,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:49:58 GMT" + "Tue, 13 Oct 2020 19:31:30 GMT" ], "Content-Length": [ "368" @@ -1287,15 +1287,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bf7423f8-f42e-4bc2-a8a7-993e9ab05ced" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29220.03", "OSName/Windows", @@ -1311,19 +1317,19 @@ "no-cache" ], "x-ms-request-id": [ - "93ae1c12-ba38-4efa-a478-5c9da0b98768" + "cb50cd51-4de1-467c-ac5a-5c6662e41e56" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14975" ], "x-ms-correlation-request-id": [ - "ceb6ba8d-d4cd-4d6c-91f9-a6626b892a86" + "38cefbe3-2c07-4488-8f1e-77fede595413" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015015Z:ceb6ba8d-d4cd-4d6c-91f9-a6626b892a86" + "NORTHEUROPE:20201013T193131Z:38cefbe3-2c07-4488-8f1e-77fede595413" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1332,7 +1338,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:50:14 GMT" + "Tue, 13 Oct 2020 19:31:30 GMT" ], "Content-Length": [ "368" @@ -1344,17 +1350,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afb6d492-2d57-404c-8e05-949eb3120fe9" + "b2c1b507-ed65-40d6-ad3b-c3466ed33c5b" ], "Accept-Language": [ "en-US" @@ -1374,19 +1380,19 @@ "no-cache" ], "x-ms-request-id": [ - "5553d50c-ec2a-431d-9f07-9f504e2b3ce0" + "af9c1867-ee57-4175-8280-aca5e9140ba2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14974" ], "x-ms-correlation-request-id": [ - "bb466a81-10b2-4af7-b636-c70c19ff85bc" + "a939c536-9fd9-4d47-ac65-f1ae044bca08" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015015Z:bb466a81-10b2-4af7-b636-c70c19ff85bc" + "NORTHEUROPE:20201013T193131Z:a939c536-9fd9-4d47-ac65-f1ae044bca08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1395,7 +1401,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:50:14 GMT" + "Tue, 13 Oct 2020 19:31:31 GMT" ], "Content-Length": [ "368" @@ -1407,21 +1413,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8be91a86-15b9-456d-b97b-3de8043d0626" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29220.03", "OSName/Windows", @@ -1437,19 +1437,19 @@ "no-cache" ], "x-ms-request-id": [ - "c9196535-fc84-41f8-a29b-1569c71cab6f" + "bc8adb3d-5c7f-4aa1-8872-456253ec9e40" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14972" ], "x-ms-correlation-request-id": [ - "db9d2c3f-78b5-406a-a310-36484e626ba4" + "af59ece3-1382-42c7-b10b-18d78a6a1b22" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015015Z:db9d2c3f-78b5-406a-a310-36484e626ba4" + "NORTHEUROPE:20201013T193148Z:af59ece3-1382-42c7-b10b-18d78a6a1b22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1458,7 +1458,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:50:14 GMT" + "Tue, 13 Oct 2020 19:31:47 GMT" ], "Content-Length": [ "368" @@ -1470,15 +1470,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e0abdf03-48d2-4c17-bf55-543ed4e767c1" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29220.03", "OSName/Windows", @@ -1494,19 +1500,19 @@ "no-cache" ], "x-ms-request-id": [ - "d4f328e1-c0f2-4d44-bded-a5d718a896f5" + "c3141127-b629-4bdf-8bd0-6fb5353e2b6b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14971" ], "x-ms-correlation-request-id": [ - "2694176e-25b0-4d1f-84b8-834967e43075" + "71c44ebc-02b8-44e1-b2dc-616d8684a68c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015032Z:2694176e-25b0-4d1f-84b8-834967e43075" + "NORTHEUROPE:20201013T193148Z:71c44ebc-02b8-44e1-b2dc-616d8684a68c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1515,7 +1521,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:50:32 GMT" + "Tue, 13 Oct 2020 19:31:48 GMT" ], "Content-Length": [ "368" @@ -1527,17 +1533,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3688d53b-6604-4954-af67-a94feafeb0d5" + "d49f7f5e-3b6d-4d41-b081-f1e704fa7792" ], "Accept-Language": [ "en-US" @@ -1547,6 +1553,12 @@ "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "90" ] }, "ResponseHeaders": { @@ -1556,20 +1568,29 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/f93c1703-f07a-4b10-a9f4-040b05d40d7a?api-version=2020-02-02-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/f93c1703-f07a-4b10-a9f4-040b05d40d7a?api-version=2020-02-02-preview" + ], "x-ms-request-id": [ - "1e4caa03-7231-46b1-81db-b2af5e6257b3" + "f93c1703-f07a-4b10-a9f4-040b05d40d7a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "e7eca536-4607-42cd-90d4-75a760c4fffa" + "a848975f-e1a0-43a0-91c7-5696e43e21e9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015032Z:e7eca536-4607-42cd-90d4-75a760c4fffa" + "NORTHEUROPE:20201013T193008Z:a848975f-e1a0-43a0-91c7-5696e43e21e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1578,10 +1599,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:50:32 GMT" + "Tue, 13 Oct 2020 19:30:08 GMT" ], "Content-Length": [ - "368" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1590,17 +1611,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T19:30:08.637Z\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 5\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "183e5c74-7671-4791-926c-48c60dca744c" + "24e41b8f-d8da-47bd-be43-b77871680778" ], "Accept-Language": [ "en-US" @@ -1610,6 +1631,12 @@ "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "52" ] }, "ResponseHeaders": { @@ -1619,20 +1646,29 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/5f5ae838-287f-451a-b2e5-37d6cce1ed1d?api-version=2020-02-02-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/5f5ae838-287f-451a-b2e5-37d6cce1ed1d?api-version=2020-02-02-preview" + ], "x-ms-request-id": [ - "ee10844a-31bb-498f-ae70-f16a2a3bcad2" + "5f5ae838-287f-451a-b2e5-37d6cce1ed1d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "734658b7-2d09-480d-9262-244560d3edae" + "9dd788cb-5906-4ea5-9e96-bc212e3559e0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015032Z:734658b7-2d09-480d-9262-244560d3edae" + "NORTHEUROPE:20201013T193025Z:9dd788cb-5906-4ea5-9e96-bc212e3559e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1641,10 +1677,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:50:32 GMT" + "Tue, 13 Oct 2020 19:30:24 GMT" ], "Content-Length": [ - "368" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1653,20 +1689,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T19:30:25.263Z\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"diffBackupIntervalInHours\": 12\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "c4138458-193c-4ef1-8dbf-09beca57d683" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "65" ] }, "ResponseHeaders": { @@ -1676,20 +1724,29 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/373df742-722b-407a-b3ea-56adda2796f8?api-version=2020-02-02-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/373df742-722b-407a-b3ea-56adda2796f8?api-version=2020-02-02-preview" + ], "x-ms-request-id": [ - "b3748521-edd2-424b-aad2-8f961d4b1080" + "373df742-722b-407a-b3ea-56adda2796f8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "18a9566e-2cc1-45cf-add9-ed8d0b7ca6d4" + "baa25e02-2ff0-4bde-82e0-aa10a5f5dc29" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015049Z:18a9566e-2cc1-45cf-add9-ed8d0b7ca6d4" + "NORTHEUROPE:20201013T193041Z:baa25e02-2ff0-4bde-82e0-aa10a5f5dc29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1698,10 +1755,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:50:49 GMT" + "Tue, 13 Oct 2020 19:30:41 GMT" ], "Content-Length": [ - "368" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1710,17 +1767,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T19:30:41.807Z\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "044d4ee4-9766-430f-aa3d-fd937acf595c" + "faec41c4-878a-4134-96a6-ef3f41fba523" ], "Accept-Language": [ "en-US" @@ -1730,6 +1787,12 @@ "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "90" ] }, "ResponseHeaders": { @@ -1739,20 +1802,29 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/ba5e194e-abfe-463b-8d69-f01314f92cd9?api-version=2020-02-02-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/ba5e194e-abfe-463b-8d69-f01314f92cd9?api-version=2020-02-02-preview" + ], "x-ms-request-id": [ - "0e6317a7-4ab3-4515-919d-386f61301545" + "ba5e194e-abfe-463b-8d69-f01314f92cd9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-correlation-request-id": [ - "9da4758e-8b14-4aec-aebb-2c24a02933d6" + "61ba6e6e-bfec-4099-a7c1-b9dde4e62bc5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015049Z:9da4758e-8b14-4aec-aebb-2c24a02933d6" + "NORTHEUROPE:20201013T193058Z:61ba6e6e-bfec-4099-a7c1-b9dde4e62bc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1761,10 +1833,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:50:49 GMT" + "Tue, 13 Oct 2020 19:30:58 GMT" ], "Content-Length": [ - "368" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1773,17 +1845,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T19:30:58.35Z\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 12\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "65b9c293-f12f-417f-8d14-1af325683b27" + "f31245d7-387b-4cb0-8b8b-a1fccdb1da4c" ], "Accept-Language": [ "en-US" @@ -1809,28 +1881,28 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/9fd1c2dd-7937-4992-80df-1f06628b33f0?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/872b46ac-d28c-4ba0-9085-4ada0196ad28?api-version=2020-02-02-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/9fd1c2dd-7937-4992-80df-1f06628b33f0?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/872b46ac-d28c-4ba0-9085-4ada0196ad28?api-version=2020-02-02-preview" ], "x-ms-request-id": [ - "9fd1c2dd-7937-4992-80df-1f06628b33f0" + "872b46ac-d28c-4ba0-9085-4ada0196ad28" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "91b224d8-a06d-466d-bd78-9d74d8cbbced" + "40e5e929-9907-4c08-8cfd-009913dc92bd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014942Z:91b224d8-a06d-466d-bd78-9d74d8cbbced" + "NORTHEUROPE:20201013T193115Z:40e5e929-9907-4c08-8cfd-009913dc92bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1839,10 +1911,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:49:42 GMT" + "Tue, 13 Oct 2020 19:31:14 GMT" ], "Content-Length": [ - "75" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1851,17 +1923,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T01:49:42.77Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T19:31:15.487Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "41f6038b-027b-43f1-970a-63f7e9fd236a" + "551bc127-6082-42e9-b335-679545e1c9a0" ], "Accept-Language": [ "en-US" @@ -1887,28 +1959,28 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/d7c75e1c-3b30-4ab4-840a-51e4cebddfd0?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/ea0e2d03-7223-4fde-852e-9d3b9e0b160e?api-version=2020-02-02-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/d7c75e1c-3b30-4ab4-840a-51e4cebddfd0?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/ea0e2d03-7223-4fde-852e-9d3b9e0b160e?api-version=2020-02-02-preview" ], "x-ms-request-id": [ - "d7c75e1c-3b30-4ab4-840a-51e4cebddfd0" + "ea0e2d03-7223-4fde-852e-9d3b9e0b160e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-correlation-request-id": [ - "d51ccc3a-91e1-4218-a0cd-e042b1129cd9" + "ddefa0ea-376f-46db-8f3d-a2ec2cfbbbba" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014959Z:d51ccc3a-91e1-4218-a0cd-e042b1129cd9" + "NORTHEUROPE:20201013T193132Z:ddefa0ea-376f-46db-8f3d-a2ec2cfbbbba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1917,7 +1989,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:49:59 GMT" + "Tue, 13 Oct 2020 19:31:31 GMT" ], "Content-Length": [ "75" @@ -1929,32 +2001,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T01:49:59.43Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T19:31:32.36Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n }\r\n}", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/f93c1703-f07a-4b10-a9f4-040b05d40d7a?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi9mOTNjMTcwMy1mMDdhLTRiMTAtYTlmNC0wNDBiMDVkNDBkN2E/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9bea2b44-f82d-45e8-98da-c30d598e8d1e" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "90" ] }, "ResponseHeaders": { @@ -1964,29 +2024,23 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/b6bb2d70-31f8-4a7c-a14f-e91da5cfafd9?api-version=2020-02-02-preview" - ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/b6bb2d70-31f8-4a7c-a14f-e91da5cfafd9?api-version=2020-02-02-preview" - ], "x-ms-request-id": [ - "b6bb2d70-31f8-4a7c-a14f-e91da5cfafd9" + "54bb48c1-6776-4d58-9fe3-c391435fafe6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" ], "x-ms-correlation-request-id": [ - "12d33abe-73b2-4917-af82-c60db1bc6941" + "548dc0ba-17e5-45c3-b55a-381596c5af2b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015016Z:12d33abe-73b2-4917-af82-c60db1bc6941" + "NORTHEUROPE:20201013T193024Z:548dc0ba-17e5-45c3-b55a-381596c5af2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1995,10 +2049,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:50:16 GMT" + "Tue, 13 Oct 2020 19:30:23 GMT" ], "Content-Length": [ - "75" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2007,32 +2061,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T01:50:16.37Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"f93c1703-f07a-4b10-a9f4-040b05d40d7a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T19:30:08.637Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n }\r\n}", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/5f5ae838-287f-451a-b2e5-37d6cce1ed1d?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi81ZjVhZTgzOC0yODdmLTQ1MWEtYjJlNS0zN2Q2Y2NlMWVkMWQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ed1ebe80-322b-436c-97d9-7e1d631e7f1e" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "90" ] }, "ResponseHeaders": { @@ -2042,29 +2084,23 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/88be2c69-afb5-44ec-b14d-03f20aad5665?api-version=2020-02-02-preview" - ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/88be2c69-afb5-44ec-b14d-03f20aad5665?api-version=2020-02-02-preview" - ], "x-ms-request-id": [ - "88be2c69-afb5-44ec-b14d-03f20aad5665" + "669078bd-ba5f-402a-8794-cdb583935a3c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" ], "x-ms-correlation-request-id": [ - "73603b29-8225-4303-9d89-86b163bdbf78" + "8b7f1d6b-1e1e-40ef-973c-7c3999f0e76e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015033Z:73603b29-8225-4303-9d89-86b163bdbf78" + "NORTHEUROPE:20201013T193040Z:8b7f1d6b-1e1e-40ef-973c-7c3999f0e76e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2073,10 +2109,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:50:33 GMT" + "Tue, 13 Oct 2020 19:30:40 GMT" ], "Content-Length": [ - "75" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2085,12 +2121,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T01:50:33.46Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"5f5ae838-287f-451a-b2e5-37d6cce1ed1d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T19:30:25.263Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/9fd1c2dd-7937-4992-80df-1f06628b33f0?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi85ZmQxYzJkZC03OTM3LTQ5OTItODBkZi0xZjA2NjI4YjMzZjA/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/373df742-722b-407a-b3ea-56adda2796f8?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi8zNzNkZjc0Mi03MjJiLTQwN2EtYjNlYS01NmFkZGEyNzk2Zjg/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2112,19 +2148,19 @@ "15" ], "x-ms-request-id": [ - "229f773a-16c1-456d-bb0b-770d3a64a084" + "f1767e06-c75c-4b85-b8bc-e3605b65ea58" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14984" ], "x-ms-correlation-request-id": [ - "338ccfd6-abcd-4b90-972f-f049b72cc034" + "ec41f1ee-5c56-4a2b-90cb-2649ef64e99a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T014958Z:338ccfd6-abcd-4b90-972f-f049b72cc034" + "NORTHEUROPE:20201013T193057Z:ec41f1ee-5c56-4a2b-90cb-2649ef64e99a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2133,10 +2169,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:49:58 GMT" + "Tue, 13 Oct 2020 19:30:57 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2145,12 +2181,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"9fd1c2dd-7937-4992-80df-1f06628b33f0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T01:49:42.77Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"373df742-722b-407a-b3ea-56adda2796f8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T19:30:41.807Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/d7c75e1c-3b30-4ab4-840a-51e4cebddfd0?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi9kN2M3NWUxYy0zYjMwLTRhYjQtODQwYS01MWU0Y2ViZGRmZDA/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/ba5e194e-abfe-463b-8d69-f01314f92cd9?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi9iYTVlMTk0ZS1hYmZlLTQ2M2ItOGQ2OS1mMDEzMTRmOTJjZDk/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2172,19 +2208,19 @@ "15" ], "x-ms-request-id": [ - "184ee287-e22b-4c7a-a6c9-2582232f93cc" + "ce6b9484-4731-4eea-9725-97b424a0ba1c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14981" ], "x-ms-correlation-request-id": [ - "2281d67b-1d69-48aa-bb93-592556cf1156" + "758e4120-d22e-4251-8282-50858fa8acb3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015014Z:2281d67b-1d69-48aa-bb93-592556cf1156" + "NORTHEUROPE:20201013T193113Z:758e4120-d22e-4251-8282-50858fa8acb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2193,7 +2229,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:50:14 GMT" + "Tue, 13 Oct 2020 19:31:13 GMT" ], "Content-Length": [ "106" @@ -2205,12 +2241,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"d7c75e1c-3b30-4ab4-840a-51e4cebddfd0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T01:49:59.43Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ba5e194e-abfe-463b-8d69-f01314f92cd9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T19:30:58.35Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/b6bb2d70-31f8-4a7c-a14f-e91da5cfafd9?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi9iNmJiMmQ3MC0zMWY4LTRhN2MtYTE0Zi1lOTFkYTVjZmFmZDk/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/872b46ac-d28c-4ba0-9085-4ada0196ad28?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi84NzJiNDZhYy1kMjhjLTRiYTAtOTA4NS00YWRhMDE5NmFkMjg/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2232,19 +2268,19 @@ "15" ], "x-ms-request-id": [ - "6031371c-f24e-4eb2-a284-015b6a0523e8" + "55c93963-7e67-40c4-ae3e-51cd350c8a3b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14977" ], "x-ms-correlation-request-id": [ - "af5c4d6b-cab0-45a1-9580-59f7a85f0f77" + "8a7a0ea5-6578-49df-8fdc-43e5678b4c53" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015031Z:af5c4d6b-cab0-45a1-9580-59f7a85f0f77" + "NORTHEUROPE:20201013T193130Z:8a7a0ea5-6578-49df-8fdc-43e5678b4c53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2253,10 +2289,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:50:30 GMT" + "Tue, 13 Oct 2020 19:31:30 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2265,12 +2301,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b6bb2d70-31f8-4a7c-a14f-e91da5cfafd9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T01:50:16.37Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"872b46ac-d28c-4ba0-9085-4ada0196ad28\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T19:31:15.487Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/88be2c69-afb5-44ec-b14d-03f20aad5665?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi84OGJlMmM2OS1hZmI1LTQ0ZWMtYjE0ZC0wM2YyMGFhZDU2NjU/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/ea0e2d03-7223-4fde-852e-9d3b9e0b160e?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi9lYTBlMmQwMy03MjIzLTRmZGUtODUyZS05ZDNiOWUwYjE2MGU/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2292,19 +2328,19 @@ "15" ], "x-ms-request-id": [ - "ad1c1460-fcc8-442c-99d2-06874ea12459" + "2703f31d-25f3-4635-b44c-fef8b3bcce16" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14973" ], "x-ms-correlation-request-id": [ - "406b8ae7-9694-4346-bd8b-25a979c172d9" + "3a56536d-d803-4e7d-909a-d64d1df2172c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015048Z:406b8ae7-9694-4346-bd8b-25a979c172d9" + "NORTHEUROPE:20201013T193147Z:3a56536d-d803-4e7d-909a-d64d1df2172c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2313,7 +2349,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:50:48 GMT" + "Tue, 13 Oct 2020 19:31:47 GMT" ], "Content-Length": [ "106" @@ -2325,17 +2361,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"88be2c69-afb5-44ec-b14d-03f20aad5665\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T01:50:33.46Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"ea0e2d03-7223-4fde-852e-9d3b9e0b160e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T19:31:32.36Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps5047?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzNTA0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d4fed3d-7be6-423f-8d52-77bfb1943ee4" + "5a772bdc-d986-4df1-90d2-da868f39f48d" ], "Accept-Language": [ "en-US" @@ -2355,16 +2391,16 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/6e4919ff-5bc4-4092-8386-fcb105d21b03?api-version=2019-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/54cbe417-39f3-4b98-9991-5c417d14816b?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/6e4919ff-5bc4-4092-8386-fcb105d21b03?api-version=2019-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/54cbe417-39f3-4b98-9991-5c417d14816b?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "6e4919ff-5bc4-4092-8386-fcb105d21b03" + "54cbe417-39f3-4b98-9991-5c417d14816b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2373,10 +2409,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "1f47d704-7a90-4471-8b25-88cc2107eb00" + "5aa35254-cd29-4c69-8418-0ba69e67668c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015050Z:1f47d704-7a90-4471-8b25-88cc2107eb00" + "NORTHEUROPE:20201013T193149Z:5aa35254-cd29-4c69-8418-0ba69e67668c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2385,10 +2421,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:50:50 GMT" + "Tue, 13 Oct 2020 19:31:48 GMT" ], "Content-Length": [ - "74" + "73" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2397,12 +2433,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"DropLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T01:50:50.357Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"DropLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T19:31:49.29Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/6e4919ff-5bc4-4092-8386-fcb105d21b03?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzZlNDkxOWZmLTViYzQtNDA5Mi04Mzg2LWZjYjEwNWQyMWIwMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/54cbe417-39f3-4b98-9991-5c417d14816b?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzU0Y2JlNDE3LTM5ZjMtNGI5OC05OTkxLTVjNDE3ZDE0ODE2Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2424,19 +2460,19 @@ "15" ], "x-ms-request-id": [ - "f803581e-2091-46db-8e1b-71945823cb94" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "ca286747-35b1-48aa-bad6-54e9276c8f82" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], "x-ms-correlation-request-id": [ - "061c5f47-5d0b-43fb-b6f3-2c618760f027" + "b1048716-cb42-467e-a157-48053c4bf6bc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015105Z:061c5f47-5d0b-43fb-b6f3-2c618760f027" + "NORTHEUROPE:20201013T193204Z:b1048716-cb42-467e-a157-48053c4bf6bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2445,10 +2481,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:51:04 GMT" + "Tue, 13 Oct 2020 19:32:04 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2457,12 +2493,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"6e4919ff-5bc4-4092-8386-fcb105d21b03\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T01:50:50.357Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"54cbe417-39f3-4b98-9991-5c417d14816b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T19:31:49.29Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/6e4919ff-5bc4-4092-8386-fcb105d21b03?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VPcGVyYXRpb25SZXN1bHRzLzZlNDkxOWZmLTViYzQtNDA5Mi04Mzg2LWZjYjEwNWQyMWIwMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/54cbe417-39f3-4b98-9991-5c417d14816b?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VPcGVyYXRpb25SZXN1bHRzLzU0Y2JlNDE3LTM5ZjMtNGI5OC05OTkxLTVjNDE3ZDE0ODE2Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2481,19 +2517,19 @@ "no-cache" ], "x-ms-request-id": [ - "a60741f0-e217-4415-ade0-7f02f1d36d0f" + "e6d06724-58d1-4f9c-a8a9-de1c565d9f26" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14968" ], "x-ms-correlation-request-id": [ - "da41db13-fb54-4aeb-8726-cae2b0069dd4" + "ea0c53ed-7ae3-4e55-b283-5c35679587fb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T015106Z:da41db13-fb54-4aeb-8726-cae2b0069dd4" + "NORTHEUROPE:20201013T193205Z:ea0c53ed-7ae3-4e55-b283-5c35679587fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2502,7 +2538,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 01:51:06 GMT" + "Tue, 13 Oct 2020 19:32:04 GMT" ], "Expires": [ "-1" @@ -2517,7 +2553,7 @@ ], "Names": { "Test-ShortTermRetentionPolicy": [ - "ps5047" + "ps3167" ] }, "Variables": { diff --git a/src/Sql/Sql/Database Backup/Model/AzureSqlDatabaseBackupShortTermRetentionPolicyModel.cs b/src/Sql/Sql/Database Backup/Model/AzureSqlDatabaseBackupShortTermRetentionPolicyModel.cs index 9b3f8c306ca9..27d414bbba9f 100644 --- a/src/Sql/Sql/Database Backup/Model/AzureSqlDatabaseBackupShortTermRetentionPolicyModel.cs +++ b/src/Sql/Sql/Database Backup/Model/AzureSqlDatabaseBackupShortTermRetentionPolicyModel.cs @@ -59,8 +59,8 @@ public AzureSqlDatabaseBackupShortTermRetentionPolicyModel(string resourceGroup, ResourceGroupName = resourceGroup; ServerName = serverName; DatabaseName = databaseName; - RetentionDays = policy.RetentionDays.Value; - DiffBackupIntervalInHours = policy.DiffBackupIntervalInHours.Value; + RetentionDays = policy.RetentionDays; + DiffBackupIntervalInHours = policy.DiffBackupIntervalInHours; } } } \ No newline at end of file diff --git a/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md b/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md index ecebe62503e1..f5f25461c652 100644 --- a/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md @@ -15,18 +15,18 @@ Sets a backup short term retention policy. ### PolicyByResourceServerDatabaseSet (Default) ``` Set-AzSqlDatabaseBackupShortTermRetentionPolicy [-ResourceGroupName] [-ServerName] [-DatabaseName] -[-RetentionDays] [-DiffBackupIntervalInHours] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +[-RetentionDays ] [-DiffBackupIntervalInHours ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### PolicyByInputObjectSet ``` -Set-AzSqlDatabaseBackupShortTermRetentionPolicy [-DatabaseName] [-RetentionDays] [-DiffBackupIntervalInHours] +Set-AzSqlDatabaseBackupShortTermRetentionPolicy [-DatabaseName] [-RetentionDays ] [-DiffBackupIntervalInHours ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### PolicyByResourceIdSet ``` -Set-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceId [-RetentionDays] [-DiffBackupIntervalInHours] +Set-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceId [-RetentionDays ] [-DiffBackupIntervalInHours ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -56,25 +56,20 @@ resourcegroup01 server01 database01 5 12 This command sets the short term retention policy for database01 to 5 retention days and 12 differential backup interval hours via piping in a database object. -## PARAMETERS +### Example 3 +```powershell +PS C:\> Set-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceGroupName resourcegroup01 -ServerName server01 -DatabaseName database01 -RetentionDays 7 +ResourceGroupName ServerName DatabaseName RetentionDays DiffBackupIntervalInHours +----------------- ---------- ------------ ------------- ------------------------- +resourcegroup01 server01 database01 7 12 +``` -### -AzureSqlDatabaseObject -The database object to get the policy for. +This command sets the short term retention policy for database01 to 7 retention days only. DiffBackupIntervalInHours is unchanged. -```yaml -Type: Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel -Parameter Sets: PolicyByInputObjectSet -Aliases: AzureSqlDatabase - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` +## PARAMETERS -### -DatabaseName -The name of the Azure SQL Database to use. +### -ResourceGroupName +The name of the resource group. ```yaml Type: System.String @@ -88,23 +83,8 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. - -```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer -Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceGroupName -The name of the resource group. +### -ServerName +The name of the Azure SQL Server the database is in. ```yaml Type: System.String @@ -118,12 +98,12 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -ResourceId -The short term retention policy resource Id. +### -DatabaseName +The name of the Azure SQL Database to use. ```yaml Type: System.String -Parameter Sets: PolicyByResourceIdSet +Parameter Sets: PolicyByResourceServerDatabaseSet Aliases: Required: True @@ -161,12 +141,12 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ServerName -The name of the Azure SQL Server the database is in. +### -ResourceId +The short term retention policy resource Id. ```yaml Type: System.String -Parameter Sets: PolicyByResourceServerDatabaseSet +Parameter Sets: PolicyByResourceIdSet Aliases: Required: True @@ -176,6 +156,36 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -AzureSqlDatabaseObject +The database object to get the policy for. + +```yaml +Type: Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel +Parameter Sets: PolicyByInputObjectSet +Aliases: AzureSqlDatabase + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. From c3c94cf5725110c32a8bc68c17e3448605147439 Mon Sep 17 00:00:00 2001 From: Lillian Liu Date: Wed, 14 Oct 2020 00:42:17 -0700 Subject: [PATCH 5/6] Add Position back to avoid breaking change; Add retentionDays nullable changes exception; Re-upload records. --- .../TestShortTermRetentionPolicy.json | 1696 +++++++++++++---- ...lDatabaseBackupShortTermRetentionPolicy.cs | 2 + ...lDatabaseBackupShortTermRetentionPolicy.md | 6 +- ...lDatabaseBackupShortTermRetentionPolicy.md | 8 +- .../Az.Sql/BreakingChangeIssues.csv | 4 +- 5 files changed, 1341 insertions(+), 375 deletions(-) diff --git a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests/TestShortTermRetentionPolicy.json b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests/TestShortTermRetentionPolicy.json index 406223fc081d..e14c1bf631b3 100644 --- a/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests/TestShortTermRetentionPolicy.json +++ b/src/Sql/Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseBackupTests/TestShortTermRetentionPolicy.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "067c2c95-e73b-4ed9-a36f-76ce283d84e9" + "ea6c10a6-e477-4c52-9314-dab76d876825" ], "Accept-Language": [ "en-US" @@ -27,7 +27,7 @@ "no-cache" ], "x-ms-request-id": [ - "7466824c-6f23-4903-a1b0-01682d2e63a2" + "5bba684c-6cbb-4466-81d3-6b9df6d3cf4d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -36,10 +36,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "82204484-cec2-4f6e-9c01-6962cbc9333d" + "4087c49f-681e-488f-b3ad-7d8f99664eeb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T192917Z:82204484-cec2-4f6e-9c01-6962cbc9333d" + "NORTHEUROPE:20201014T072429Z:4087c49f-681e-488f-b3ad-7d8f99664eeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:29:17 GMT" + "Wed, 14 Oct 2020 07:24:29 GMT" ], "Content-Length": [ "492" @@ -70,7 +70,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0df94c9e-d372-4ca8-872a-ce212aa737e9" + "0b219150-6dbe-4251-b3c2-2e04f2fbf944" ], "Accept-Language": [ "en-US" @@ -90,7 +90,7 @@ "no-cache" ], "x-ms-request-id": [ - "d0f8109f-dd2a-48b2-ba25-b7e530ac4826" + "0f2014ef-37e9-4965-a1cb-664031ef9c81" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -99,10 +99,10 @@ "14997" ], "x-ms-correlation-request-id": [ - "65a08af8-d415-4b3b-9cc8-90b4ac4985b1" + "ef4607dd-bc05-4557-b785-9c7679f64294" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T192918Z:65a08af8-d415-4b3b-9cc8-90b4ac4985b1" + "NORTHEUROPE:20201014T072430Z:ef4607dd-bc05-4557-b785-9c7679f64294" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:29:17 GMT" + "Wed, 14 Oct 2020 07:24:29 GMT" ], "Content-Length": [ "492" @@ -127,13 +127,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ddeb5ddf-1406-48fe-b3d6-454ca240a5e1" + "775b6076-dba3-41ed-a002-b77e5b60e93d" ], "Accept-Language": [ "en-US" @@ -156,13 +156,13 @@ "gateway" ], "x-ms-request-id": [ - "9ab6e8ee-163d-4d82-8835-deb3d6f285f5" + "476abce0-37f3-451d-84f2-64a42386311e" ], "x-ms-correlation-request-id": [ - "9ab6e8ee-163d-4d82-8835-deb3d6f285f5" + "476abce0-37f3-451d-84f2-64a42386311e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T192918Z:9ab6e8ee-163d-4d82-8835-deb3d6f285f5" + "NORTHEUROPE:20201014T072430Z:476abce0-37f3-451d-84f2-64a42386311e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:29:17 GMT" + "Wed, 14 Oct 2020 07:24:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,12 +183,12 @@ "257" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167' under resource group 'PowershellStageResourceGroup' 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.Sql/servers/pssqlserverfortest/databases/ps2833' under resource group 'PowershellStageResourceGroup' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -207,7 +207,388 @@ "no-cache" ], "x-ms-request-id": [ - "3ee55165-400d-4b1e-a5de-b4818dd122ae" + "2afff21c-b27e-4f9c-aed6-10e990b4ecdc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "d34826b1-6c41-499f-9a75-5b970eef7d94" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20201014T072926Z:d34826b1-6c41-499f-9a75-5b970eef7d94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 14 Oct 2020 07:29:25 GMT" + ], + "Content-Length": [ + "1023" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"b34cced0-8c5f-4b37-935b-639464abd8e6\",\r\n \"creationDate\": \"2020-10-14T07:29:14.593Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307921510,\r\n \"earliestRestoreDate\": \"2020-10-14T07:59:14.593Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833\",\r\n \"name\": \"ps2833\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8e4465d-97c4-4326-a6d6-0fba86f2dcae" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "117e3f55-f692-4d1f-8ea3-7ff7b8040d87" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "aefc6236-a70d-4853-8837-37bcae78dd38" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20201014T073108Z:aefc6236-a70d-4853-8837-37bcae78dd38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 14 Oct 2020 07:31:08 GMT" + ], + "Content-Length": [ + "1023" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"b34cced0-8c5f-4b37-935b-639464abd8e6\",\r\n \"creationDate\": \"2020-10-14T07:29:14.593Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307921510,\r\n \"earliestRestoreDate\": \"2020-10-14T07:59:14.593Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833\",\r\n \"name\": \"ps2833\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8ae1447-ae4b-4a05-89dd-139371ba331e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "105" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "15" + ], + "Azure-AsyncOperation": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "a6ed4242-aae0-4144-b348-3e9e2643a90e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "654c6f76-3653-4e56-82c2-33134d0fd206" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20201014T072433Z:654c6f76-3653-4e56-82c2-33134d0fd206" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 14 Oct 2020 07:24:33 GMT" + ], + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "37db9a6b-474d-4c8d-b53f-0729061efdbe" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "725be73a-68b2-429d-8aa6-87482af8b3e0" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20201014T072449Z:725be73a-68b2-429d-8aa6-87482af8b3e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 14 Oct 2020 07:24:48 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "088013ab-862a-43ce-ad55-e3f8737dcc59" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "89c1dd13-8f84-4168-a589-89d5c7ce57d9" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20201014T072504Z:89c1dd13-8f84-4168-a589-89d5c7ce57d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 14 Oct 2020 07:25:03 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "f057d013-f493-4525-a2f4-506b303155f6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "a88cbc33-e888-4d54-b490-cd1c0ac7b917" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20201014T072519Z:a88cbc33-e888-4d54-b490-cd1c0ac7b917" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 14 Oct 2020 07:25:19 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "cca4045a-1b16-4737-82df-5886519f3b82" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -216,10 +597,430 @@ "14993" ], "x-ms-correlation-request-id": [ - "7cf1b508-bd52-48b3-b807-38ce66d5d743" + "52584a56-8ba0-4051-811e-bb4d7ad06a7e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20201014T072535Z:52584a56-8ba0-4051-811e-bb4d7ad06a7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 14 Oct 2020 07:25:34 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "c0c4529d-4a01-411d-b0a3-22f4f128c7c1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "0b711438-4819-40ae-a3ab-7de98c221a29" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20201014T072550Z:0b711438-4819-40ae-a3ab-7de98c221a29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 14 Oct 2020 07:25:49 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "7812cacb-5415-4669-8b49-114b54713826" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "273358ab-405c-47e6-a072-c8abdac6d721" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20201014T072605Z:273358ab-405c-47e6-a072-c8abdac6d721" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 14 Oct 2020 07:26:05 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "aeb55e38-826e-457f-b5f5-0f2688e0f876" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "504b3199-2794-46f3-b0bb-8aaad96107f0" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20201014T072621Z:504b3199-2794-46f3-b0bb-8aaad96107f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 14 Oct 2020 07:26:20 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "f37b77fe-5e99-4a57-bf8e-4beab635aad9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "5497d8d9-728c-4b1f-9fb7-ace032129184" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20201014T072636Z:5497d8d9-728c-4b1f-9fb7-ace032129184" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 14 Oct 2020 07:26:36 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "6820dff1-5e9d-4ac1-8411-f2c510af39ab" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "5b712179-f5c7-4d3d-8313-e0f89a41c945" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20201014T072651Z:5b712179-f5c7-4d3d-8313-e0f89a41c945" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 14 Oct 2020 07:26:51 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d07384bf-143c-4e6a-bc04-364fe748cb19" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "bdbbc8f4-8bc2-422b-9710-85ebd5871c0f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20201014T072707Z:bdbbc8f4-8bc2-422b-9710-85ebd5871c0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 14 Oct 2020 07:27:06 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "6702fee4-cd0b-401a-995a-3f7a8da8b333" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "6ebb8426-0a60-451e-8788-cb78f82bfdce" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193007Z:7cf1b508-bd52-48b3-b807-38ce66d5d743" + "NORTHEUROPE:20201014T072722Z:6ebb8426-0a60-451e-8788-cb78f82bfdce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -228,10 +1029,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:07 GMT" + "Wed, 14 Oct 2020 07:27:22 GMT" ], "Content-Length": [ - "1023" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -240,21 +1041,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"b5cc36b9-f17c-477d-9e8d-0003860db2bb\",\r\n \"creationDate\": \"2020-10-13T19:30:01.583Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307921510,\r\n \"earliestRestoreDate\": \"2020-10-13T20:00:01.583Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167\",\r\n \"name\": \"ps3167\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "05297d83-38d4-41ef-b428-395336b9ba14" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.29220.03", "OSName/Windows", @@ -269,20 +1064,23 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "15" + ], "x-ms-request-id": [ - "41b4e68d-f6d0-4d00-8698-37b906f1b24b" + "aca6ce38-7e5d-4cf9-bd08-61697b62ea85" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14985" ], "x-ms-correlation-request-id": [ - "cec47472-fdb8-4464-97bb-46c51222877a" + "122a419e-954b-4aa0-befd-30a6e8f49d7d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193148Z:cec47472-fdb8-4464-97bb-46c51222877a" + "NORTHEUROPE:20201014T072737Z:122a419e-954b-4aa0-befd-30a6e8f49d7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,10 +1089,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:31:48 GMT" + "Wed, 14 Oct 2020 07:27:37 GMT" ], "Content-Length": [ - "1023" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -303,32 +1101,140 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": 34359738368,\r\n \"status\": \"Online\",\r\n \"databaseId\": \"b5cc36b9-f17c-477d-9e8d-0003860db2bb\",\r\n \"creationDate\": \"2020-10-13T19:30:01.583Z\",\r\n \"currentServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"defaultSecondaryLocation\": \"northeurope\",\r\n \"catalogCollation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"zoneRedundant\": false,\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"maxLogSizeBytes\": 10307921510,\r\n \"earliestRestoreDate\": \"2020-10-13T20:00:01.583Z\",\r\n \"readScale\": \"Disabled\",\r\n \"readReplicaCount\": 0,\r\n \"currentSku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"storageAccountType\": \"GRS\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167\",\r\n \"name\": \"ps3167\",\r\n \"type\": \"Microsoft.Sql/servers/databases\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"readScale\": \"\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "63fc2c3d-b571-4c33-a9c7-38b7d9cd47f9" + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], - "Accept-Language": [ - "en-US" + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "d66f2963-967c-4f6b-b819-837dea740857" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "43982e39-3a3a-489e-8399-75bd693d42f1" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20201014T072753Z:43982e39-3a3a-489e-8399-75bd693d42f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 14 Oct 2020 07:27:52 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29220.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "588d5212-4664-49a4-a52c-20d8fdea16e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "21f044a5-0de0-4964-8446-bce139d97cfe" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20201014T072808Z:21f044a5-0de0-4964-8446-bce139d97cfe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 14 Oct 2020 07:28:08 GMT" + ], + "Content-Length": [ + "107" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Content-Length": [ - "105" + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" ] }, "ResponseHeaders": { @@ -338,29 +1244,23 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/b42324ef-de24-4096-a0dc-8a66cc5f8f68?api-version=2019-06-01-preview" - ], "Retry-After": [ "15" ], - "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/b42324ef-de24-4096-a0dc-8a66cc5f8f68?api-version=2019-06-01-preview" - ], "x-ms-request-id": [ - "b42324ef-de24-4096-a0dc-8a66cc5f8f68" + "b667bfde-ba5a-4d3c-a47a-9a634aff826d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" ], "x-ms-correlation-request-id": [ - "d10ee8ec-6ec2-496a-b9cc-4cb06278c229" + "1cd6bdf7-d5ff-474c-adda-2e6834e55eb2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T192921Z:d10ee8ec-6ec2-496a-b9cc-4cb06278c229" + "NORTHEUROPE:20201014T072823Z:1cd6bdf7-d5ff-474c-adda-2e6834e55eb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,10 +1269,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:29:20 GMT" + "Wed, 14 Oct 2020 07:28:23 GMT" ], "Content-Length": [ - "76" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -381,12 +1281,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T19:29:20.863Z\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/b42324ef-de24-4096-a0dc-8a66cc5f8f68?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2I0MjMyNGVmLWRlMjQtNDA5Ni1hMGRjLThhNjZjYzVmOGY2OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -408,19 +1308,19 @@ "15" ], "x-ms-request-id": [ - "b17eb0c9-de90-4c4b-a1f0-00045e4a0170" + "afa3e93f-2814-43ae-a996-e4d5bd31b57e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14981" ], "x-ms-correlation-request-id": [ - "49df530f-757f-42a2-ba65-875bde869cef" + "25c31a47-bef0-4b07-a7f8-8a6747fd4ce2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T192936Z:49df530f-757f-42a2-ba65-875bde869cef" + "NORTHEUROPE:20201014T072839Z:25c31a47-bef0-4b07-a7f8-8a6747fd4ce2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,10 +1329,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:29:36 GMT" + "Wed, 14 Oct 2020 07:28:39 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,12 +1341,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b42324ef-de24-4096-a0dc-8a66cc5f8f68\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T19:29:20.863Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/b42324ef-de24-4096-a0dc-8a66cc5f8f68?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2I0MjMyNGVmLWRlMjQtNDA5Ni1hMGRjLThhNjZjYzVmOGY2OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -468,19 +1368,19 @@ "15" ], "x-ms-request-id": [ - "6c62fe3d-562f-46b3-bec8-b15d86d9dff9" + "821b2af4-e2ba-4854-8399-ee448ae6008f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14980" ], "x-ms-correlation-request-id": [ - "5338fe97-a43b-41e6-b0fa-37cada408520" + "71636639-9cce-4187-b43d-db2c92c0fb54" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T192951Z:5338fe97-a43b-41e6-b0fa-37cada408520" + "NORTHEUROPE:20201014T072854Z:71636639-9cce-4187-b43d-db2c92c0fb54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -489,10 +1389,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:29:51 GMT" + "Wed, 14 Oct 2020 07:28:54 GMT" ], "Content-Length": [ - "108" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -501,12 +1401,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b42324ef-de24-4096-a0dc-8a66cc5f8f68\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-13T19:29:20.863Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/b42324ef-de24-4096-a0dc-8a66cc5f8f68?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2I0MjMyNGVmLWRlMjQtNDA5Ni1hMGRjLThhNjZjYzVmOGY2OD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -528,19 +1428,19 @@ "15" ], "x-ms-request-id": [ - "ace5f094-8fa7-4b64-9dcf-2fdaebaca520" + "e04003ca-24b8-4e14-9f6b-072eb41a494b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14979" ], "x-ms-correlation-request-id": [ - "2c6e70c0-1053-4d34-9d84-ca85dda9dcfb" + "7a908e8b-9c18-4516-ba09-b1b3745224e4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193007Z:2c6e70c0-1053-4d34-9d84-ca85dda9dcfb" + "NORTHEUROPE:20201014T072909Z:7a908e8b-9c18-4516-ba09-b1b3745224e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -549,7 +1449,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:06 GMT" + "Wed, 14 Oct 2020 07:29:09 GMT" ], "Content-Length": [ "107" @@ -561,17 +1461,77 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"b42324ef-de24-4096-a0dc-8a66cc5f8f68\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T19:29:20.863Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/a6ed4242-aae0-4144-b348-3e9e2643a90e?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uL2E2ZWQ0MjQyLWFhZTAtNDE0NC1iMzQ4LTNlOWUyNjQzYTkwZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.45.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-request-id": [ + "f8b30589-4f20-4860-add0-64e04dd84588" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "a5abc756-f0dc-43ff-9fb7-a7398e8d7658" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20201014T072925Z:a5abc756-f0dc-43ff-9fb7-a7398e8d7658" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 14 Oct 2020 07:29:24 GMT" + ], + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a6ed4242-aae0-4144-b348-3e9e2643a90e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-14T07:24:33.66Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da381e02-3990-4eda-8698-e313b484e877" + "7ebecdf9-ae24-41c3-93a8-0909249583db" ], "Accept-Language": [ "en-US" @@ -591,19 +1551,19 @@ "no-cache" ], "x-ms-request-id": [ - "c6f196c4-c483-4991-83ef-bae0ae8ce05a" + "83f74620-1691-417d-89e4-d72814519767" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14976" ], "x-ms-correlation-request-id": [ - "7dd0a74c-7e6d-4e91-8453-944957515d98" + "309824a2-6a11-4cf4-ba8c-491cfc5ec947" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193007Z:7dd0a74c-7e6d-4e91-8453-944957515d98" + "NORTHEUROPE:20201014T072926Z:309824a2-6a11-4cf4-ba8c-491cfc5ec947" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,7 +1572,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:07 GMT" + "Wed, 14 Oct 2020 07:29:26 GMT" ], "Content-Length": [ "368" @@ -624,17 +1584,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68bf1f92-8abb-48bc-8f67-52ada49d5d02" + "9671c327-08f5-4a51-8a9b-d5bf1379bc6a" ], "Accept-Language": [ "en-US" @@ -654,19 +1614,19 @@ "no-cache" ], "x-ms-request-id": [ - "09965234-65fc-405f-b23e-d1ce247ff70f" + "2706d0bf-c683-4645-8004-4917bff6a5cb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14975" ], "x-ms-correlation-request-id": [ - "7a876dfc-f248-4f23-9655-e85fc20b3b95" + "e3cb8653-96aa-4f58-b581-c9d2580369d0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193008Z:7a876dfc-f248-4f23-9655-e85fc20b3b95" + "NORTHEUROPE:20201014T072926Z:e3cb8653-96aa-4f58-b581-c9d2580369d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -675,7 +1635,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:07 GMT" + "Wed, 14 Oct 2020 07:29:26 GMT" ], "Content-Length": [ "368" @@ -687,12 +1647,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -711,19 +1671,19 @@ "no-cache" ], "x-ms-request-id": [ - "6a15302d-65f7-441e-ab3f-8fa9cfd17b75" + "723fa28f-c150-45ca-a295-b5ef1a647268" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14973" ], "x-ms-correlation-request-id": [ - "aadd9ddc-6e4e-4246-83d6-bf72a4cf911c" + "4ea2fef6-e2bf-40ca-bd3f-2bf78bcdd796" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193024Z:aadd9ddc-6e4e-4246-83d6-bf72a4cf911c" + "NORTHEUROPE:20201014T072943Z:4ea2fef6-e2bf-40ca-bd3f-2bf78bcdd796" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,7 +1692,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:24 GMT" + "Wed, 14 Oct 2020 07:29:42 GMT" ], "Content-Length": [ "368" @@ -744,17 +1704,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a41cc19-15b0-4072-b2ac-68e4d19e21c1" + "4464e237-addd-4fb3-9845-c31d5e1ee76c" ], "Accept-Language": [ "en-US" @@ -774,19 +1734,19 @@ "no-cache" ], "x-ms-request-id": [ - "f58c61cd-740a-46a3-a6ec-a9cc754bebd5" + "f8ff4a96-148c-47ce-929a-e2905c30b417" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14972" ], "x-ms-correlation-request-id": [ - "44c18ff5-ad67-4aaf-abde-9ff3988e82bc" + "d04d28ba-083e-4442-adb6-b6c6cc6138af" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193024Z:44c18ff5-ad67-4aaf-abde-9ff3988e82bc" + "NORTHEUROPE:20201014T072943Z:d04d28ba-083e-4442-adb6-b6c6cc6138af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -795,7 +1755,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:24 GMT" + "Wed, 14 Oct 2020 07:29:42 GMT" ], "Content-Length": [ "368" @@ -807,12 +1767,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -831,19 +1791,19 @@ "no-cache" ], "x-ms-request-id": [ - "af760f94-fc48-4c3d-b7e2-c66a8e0b88c9" + "b9a92774-bc0c-4d3f-b1c8-257bac1bea2e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14970" ], "x-ms-correlation-request-id": [ - "87d3b5c3-01c4-4636-a193-b26aa595830b" + "6e4e989c-f577-4a66-9b20-f10501c50155" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193041Z:87d3b5c3-01c4-4636-a193-b26aa595830b" + "NORTHEUROPE:20201014T073000Z:6e4e989c-f577-4a66-9b20-f10501c50155" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,7 +1812,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:41 GMT" + "Wed, 14 Oct 2020 07:30:00 GMT" ], "Content-Length": [ "368" @@ -864,17 +1824,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 5,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 5,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb2db7fb-a651-46c1-8cb9-8615d6c2ff37" + "28885abf-9609-4bcc-8e12-25d032e6d328" ], "Accept-Language": [ "en-US" @@ -894,19 +1854,19 @@ "no-cache" ], "x-ms-request-id": [ - "caa3b102-4abd-4e73-b71d-785f6ffe1142" + "8df69c71-726b-4889-ae3f-6f7bd25b1b7a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14969" ], "x-ms-correlation-request-id": [ - "7cca74a1-04fc-464b-84ce-1749f09ce571" + "896fe0d3-54b5-444f-a73f-8e1870bded1c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193041Z:7cca74a1-04fc-464b-84ce-1749f09ce571" + "NORTHEUROPE:20201014T073000Z:896fe0d3-54b5-444f-a73f-8e1870bded1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -915,7 +1875,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:41 GMT" + "Wed, 14 Oct 2020 07:30:00 GMT" ], "Content-Length": [ "368" @@ -927,12 +1887,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 5,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 5,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -951,19 +1911,19 @@ "no-cache" ], "x-ms-request-id": [ - "163697e7-2c8d-454f-a179-424b409e7baa" + "d26fa5b9-9455-4a33-a24b-40d1e7034d3d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14967" ], "x-ms-correlation-request-id": [ - "4dee86ba-46f4-41eb-b6cd-51b19bd28771" + "85d43ad1-70f5-4261-ae15-7ebcf3f82675" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193057Z:4dee86ba-46f4-41eb-b6cd-51b19bd28771" + "NORTHEUROPE:20201014T073017Z:85d43ad1-70f5-4261-ae15-7ebcf3f82675" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -972,7 +1932,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:57 GMT" + "Wed, 14 Oct 2020 07:30:17 GMT" ], "Content-Length": [ "368" @@ -984,17 +1944,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 5,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 5,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86ef6232-3245-482f-aab4-abc0bb7f96e6" + "3ce1b404-4e9f-42e8-854f-5c87622dbd3e" ], "Accept-Language": [ "en-US" @@ -1014,19 +1974,19 @@ "no-cache" ], "x-ms-request-id": [ - "e7e67294-fc83-4df8-a8cb-231d7556c1fd" + "b2c7cea1-fa36-4ae3-abf5-78d5e51d268e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14966" ], "x-ms-correlation-request-id": [ - "d026af39-cbf2-4edb-b69d-b502edc9db28" + "2d652a24-c7ce-49dd-b083-114514add424" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193057Z:d026af39-cbf2-4edb-b69d-b502edc9db28" + "NORTHEUROPE:20201014T073017Z:2d652a24-c7ce-49dd-b083-114514add424" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,7 +1995,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:57 GMT" + "Wed, 14 Oct 2020 07:30:17 GMT" ], "Content-Length": [ "368" @@ -1047,12 +2007,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 5,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 5,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1071,19 +2031,19 @@ "no-cache" ], "x-ms-request-id": [ - "912eb521-22e5-4dff-8c89-807f122020e9" + "9de5cb28-6afb-453f-b54d-30629fe0a80f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14964" ], "x-ms-correlation-request-id": [ - "eb9c9138-411c-4ae9-b1d8-5cd13d4db2b8" + "c5a85610-c124-4f68-b231-16055626f913" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193114Z:eb9c9138-411c-4ae9-b1d8-5cd13d4db2b8" + "NORTHEUROPE:20201014T073033Z:c5a85610-c124-4f68-b231-16055626f913" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1092,7 +2052,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:31:13 GMT" + "Wed, 14 Oct 2020 07:30:33 GMT" ], "Content-Length": [ "368" @@ -1104,17 +2064,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b324becc-772a-4e09-85bc-bf04c28c01ac" + "ee864768-e8e7-463f-bb7e-5bf71fb571c0" ], "Accept-Language": [ "en-US" @@ -1134,19 +2094,19 @@ "no-cache" ], "x-ms-request-id": [ - "bc8fa906-df7f-4751-b8a6-be4f07989dad" + "d323f43f-7c94-4bcd-8057-ddd71442303c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14963" ], "x-ms-correlation-request-id": [ - "5d9dbf43-cda1-45f3-833d-704f514b729a" + "0898f990-5941-47e5-bf44-722b2d160f45" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193114Z:5d9dbf43-cda1-45f3-833d-704f514b729a" + "NORTHEUROPE:20201014T073034Z:0898f990-5941-47e5-bf44-722b2d160f45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1155,7 +2115,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:31:13 GMT" + "Wed, 14 Oct 2020 07:30:33 GMT" ], "Content-Length": [ "368" @@ -1167,17 +2127,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2440946c-a879-4ce1-980e-5083d27d02b6" + "0f87984f-eccc-4b35-8cba-82a0e20b2650" ], "Accept-Language": [ "en-US" @@ -1197,19 +2157,19 @@ "no-cache" ], "x-ms-request-id": [ - "97cf3d5b-a912-4458-85bb-f70b5ebe0154" + "ab919da4-8db7-464f-9901-abf20386631f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14962" ], "x-ms-correlation-request-id": [ - "df1553d1-3062-4aa4-90f0-d97ed97d56e5" + "f33b5e62-7e0d-4bee-903c-a3c3aa95133a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193114Z:df1553d1-3062-4aa4-90f0-d97ed97d56e5" + "NORTHEUROPE:20201014T073034Z:f33b5e62-7e0d-4bee-903c-a3c3aa95133a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1218,7 +2178,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:31:13 GMT" + "Wed, 14 Oct 2020 07:30:33 GMT" ], "Content-Length": [ "368" @@ -1230,12 +2190,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1254,19 +2214,19 @@ "no-cache" ], "x-ms-request-id": [ - "47278608-59c8-4803-a75a-10f379d1e05c" + "17085a9f-4ada-4f0b-8f4f-10e16766be37" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14960" ], "x-ms-correlation-request-id": [ - "e8a34f9c-4588-43e8-85cc-a39b8f52cf28" + "fdbb2f1f-3ba7-48bf-83a4-71bde80983db" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193131Z:e8a34f9c-4588-43e8-85cc-a39b8f52cf28" + "NORTHEUROPE:20201014T073050Z:fdbb2f1f-3ba7-48bf-83a4-71bde80983db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1275,7 +2235,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:31:30 GMT" + "Wed, 14 Oct 2020 07:30:49 GMT" ], "Content-Length": [ "368" @@ -1287,17 +2247,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf7423f8-f42e-4bc2-a8a7-993e9ab05ced" + "a10e2aa4-06b7-4700-84c4-1aeb6a4ba938" ], "Accept-Language": [ "en-US" @@ -1317,19 +2277,19 @@ "no-cache" ], "x-ms-request-id": [ - "cb50cd51-4de1-467c-ac5a-5c6662e41e56" + "043ab9a9-23b8-4edb-bd3c-ec19cc97e9ca" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14959" ], "x-ms-correlation-request-id": [ - "38cefbe3-2c07-4488-8f1e-77fede595413" + "4f0b906c-7274-414d-9604-4f25a0e31b28" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193131Z:38cefbe3-2c07-4488-8f1e-77fede595413" + "NORTHEUROPE:20201014T073051Z:4f0b906c-7274-414d-9604-4f25a0e31b28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,7 +2298,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:31:30 GMT" + "Wed, 14 Oct 2020 07:30:51 GMT" ], "Content-Length": [ "368" @@ -1350,17 +2310,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2c1b507-ed65-40d6-ad3b-c3466ed33c5b" + "ccc1fc3b-b642-4dc5-a2d5-ec80606b78f9" ], "Accept-Language": [ "en-US" @@ -1380,19 +2340,19 @@ "no-cache" ], "x-ms-request-id": [ - "af9c1867-ee57-4175-8280-aca5e9140ba2" + "a2da31c8-37a6-4b9e-b5b9-4c9f4f572db9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14958" ], "x-ms-correlation-request-id": [ - "a939c536-9fd9-4d47-ac65-f1ae044bca08" + "e82708b2-631b-4e8a-9e70-19d14ef897d4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193131Z:a939c536-9fd9-4d47-ac65-f1ae044bca08" + "NORTHEUROPE:20201014T073051Z:e82708b2-631b-4e8a-9e70-19d14ef897d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1401,7 +2361,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:31:31 GMT" + "Wed, 14 Oct 2020 07:30:51 GMT" ], "Content-Length": [ "368" @@ -1413,12 +2373,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 12\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1437,19 +2397,19 @@ "no-cache" ], "x-ms-request-id": [ - "bc8adb3d-5c7f-4aa1-8872-456253ec9e40" + "f2aab9d4-24b8-443b-aa34-23ed50cefdce" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14956" ], "x-ms-correlation-request-id": [ - "af59ece3-1382-42c7-b10b-18d78a6a1b22" + "973e51a9-8ea5-47af-ae10-0bf72c89d5b1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193148Z:af59ece3-1382-42c7-b10b-18d78a6a1b22" + "NORTHEUROPE:20201014T073107Z:973e51a9-8ea5-47af-ae10-0bf72c89d5b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1458,7 +2418,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:31:47 GMT" + "Wed, 14 Oct 2020 07:31:07 GMT" ], "Content-Length": [ "368" @@ -1470,17 +2430,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0abdf03-48d2-4c17-bf55-543ed4e767c1" + "76484930-5cb1-41f8-ba2e-a8d082a98fd1" ], "Accept-Language": [ "en-US" @@ -1500,19 +2460,19 @@ "no-cache" ], "x-ms-request-id": [ - "c3141127-b629-4bdf-8bd0-6fb5353e2b6b" + "f7ee132b-665b-4b7b-a777-ac785b704331" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14955" ], "x-ms-correlation-request-id": [ - "71c44ebc-02b8-44e1-b2dc-616d8684a68c" + "67ad9d9b-868f-43fa-acc4-3456ffe73795" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193148Z:71c44ebc-02b8-44e1-b2dc-616d8684a68c" + "NORTHEUROPE:20201014T073108Z:67ad9d9b-868f-43fa-acc4-3456ffe73795" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1521,7 +2481,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:31:48 GMT" + "Wed, 14 Oct 2020 07:31:07 GMT" ], "Content-Length": [ "368" @@ -1533,17 +2493,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n },\r\n \"id\": \"/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 24\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d49f7f5e-3b6d-4d41-b081-f1e704fa7792" + "196622ee-2043-4ebf-b286-93c9106f66c3" ], "Accept-Language": [ "en-US" @@ -1569,16 +2529,16 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/f93c1703-f07a-4b10-a9f4-040b05d40d7a?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/dc844a27-4d51-4bd2-b819-a661d88cb804?api-version=2020-02-02-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/f93c1703-f07a-4b10-a9f4-040b05d40d7a?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/dc844a27-4d51-4bd2-b819-a661d88cb804?api-version=2020-02-02-preview" ], "x-ms-request-id": [ - "f93c1703-f07a-4b10-a9f4-040b05d40d7a" + "dc844a27-4d51-4bd2-b819-a661d88cb804" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1587,10 +2547,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "a848975f-e1a0-43a0-91c7-5696e43e21e9" + "7f71319f-5134-4819-85e4-ac0cf1893dcc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193008Z:a848975f-e1a0-43a0-91c7-5696e43e21e9" + "NORTHEUROPE:20201014T072927Z:7f71319f-5134-4819-85e4-ac0cf1893dcc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1599,7 +2559,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:08 GMT" + "Wed, 14 Oct 2020 07:29:27 GMT" ], "Content-Length": [ "76" @@ -1611,17 +2571,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T19:30:08.637Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-14T07:29:27.303Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 5\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "24e41b8f-d8da-47bd-be43-b77871680778" + "ac916bfd-4580-4903-bd65-a675b712fa13" ], "Accept-Language": [ "en-US" @@ -1647,16 +2607,16 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/5f5ae838-287f-451a-b2e5-37d6cce1ed1d?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/88c06a7c-1244-44c2-b3ee-42b7ff0e31b6?api-version=2020-02-02-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/5f5ae838-287f-451a-b2e5-37d6cce1ed1d?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/88c06a7c-1244-44c2-b3ee-42b7ff0e31b6?api-version=2020-02-02-preview" ], "x-ms-request-id": [ - "5f5ae838-287f-451a-b2e5-37d6cce1ed1d" + "88c06a7c-1244-44c2-b3ee-42b7ff0e31b6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1665,10 +2625,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "9dd788cb-5906-4ea5-9e96-bc212e3559e0" + "958da895-e11c-46d3-9f60-b65791c3c6f0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193025Z:9dd788cb-5906-4ea5-9e96-bc212e3559e0" + "NORTHEUROPE:20201014T072944Z:958da895-e11c-46d3-9f60-b65791c3c6f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1677,10 +2637,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:24 GMT" + "Wed, 14 Oct 2020 07:29:44 GMT" ], "Content-Length": [ - "76" + "75" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1689,17 +2649,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T19:30:25.263Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-14T07:29:44.11Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"diffBackupIntervalInHours\": 12\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c4138458-193c-4ef1-8dbf-09beca57d683" + "ce2b1694-7a05-454e-8eb9-aba3223416b4" ], "Accept-Language": [ "en-US" @@ -1725,16 +2685,16 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/373df742-722b-407a-b3ea-56adda2796f8?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/61e561f2-00dc-4d2f-be5e-934ef4b2356a?api-version=2020-02-02-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/373df742-722b-407a-b3ea-56adda2796f8?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/61e561f2-00dc-4d2f-be5e-934ef4b2356a?api-version=2020-02-02-preview" ], "x-ms-request-id": [ - "373df742-722b-407a-b3ea-56adda2796f8" + "61e561f2-00dc-4d2f-be5e-934ef4b2356a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1743,10 +2703,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "baa25e02-2ff0-4bde-82e0-aa10a5f5dc29" + "1c57360e-0e79-4df9-a5d4-a67ef0720f4d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193041Z:baa25e02-2ff0-4bde-82e0-aa10a5f5dc29" + "NORTHEUROPE:20201014T073001Z:1c57360e-0e79-4df9-a5d4-a67ef0720f4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1755,7 +2715,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:41 GMT" + "Wed, 14 Oct 2020 07:30:01 GMT" ], "Content-Length": [ "76" @@ -1767,17 +2727,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T19:30:41.807Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-14T07:30:01.313Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "faec41c4-878a-4134-96a6-ef3f41fba523" + "05c59dd8-b91e-4210-98ce-279f22100508" ], "Accept-Language": [ "en-US" @@ -1803,16 +2763,16 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/ba5e194e-abfe-463b-8d69-f01314f92cd9?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/61aaf2da-b1cf-4849-afec-284941e35103?api-version=2020-02-02-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/ba5e194e-abfe-463b-8d69-f01314f92cd9?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/61aaf2da-b1cf-4849-afec-284941e35103?api-version=2020-02-02-preview" ], "x-ms-request-id": [ - "ba5e194e-abfe-463b-8d69-f01314f92cd9" + "61aaf2da-b1cf-4849-afec-284941e35103" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1821,10 +2781,10 @@ "1195" ], "x-ms-correlation-request-id": [ - "61ba6e6e-bfec-4099-a7c1-b9dde4e62bc5" + "b4cb5f7b-f8bd-4a44-a2b2-8a52cde2c326" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193058Z:61ba6e6e-bfec-4099-a7c1-b9dde4e62bc5" + "NORTHEUROPE:20201014T073018Z:b4cb5f7b-f8bd-4a44-a2b2-8a52cde2c326" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1833,10 +2793,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:58 GMT" + "Wed, 14 Oct 2020 07:30:18 GMT" ], "Content-Length": [ - "75" + "76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1845,17 +2805,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T19:30:58.35Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-14T07:30:17.973Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 6,\r\n \"diffBackupIntervalInHours\": 12\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f31245d7-387b-4cb0-8b8b-a1fccdb1da4c" + "5bebfdde-4164-47a3-9331-a2d570e5a840" ], "Accept-Language": [ "en-US" @@ -1881,16 +2841,16 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/872b46ac-d28c-4ba0-9085-4ada0196ad28?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/c869815c-8991-4aea-8fe6-b6bb560b74ee?api-version=2020-02-02-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/872b46ac-d28c-4ba0-9085-4ada0196ad28?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/c869815c-8991-4aea-8fe6-b6bb560b74ee?api-version=2020-02-02-preview" ], "x-ms-request-id": [ - "872b46ac-d28c-4ba0-9085-4ada0196ad28" + "c869815c-8991-4aea-8fe6-b6bb560b74ee" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1899,10 +2859,10 @@ "1194" ], "x-ms-correlation-request-id": [ - "40e5e929-9907-4c08-8cfd-009913dc92bd" + "9aa5dc7d-d58a-41c8-9f8d-ea0a26231ac4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193115Z:40e5e929-9907-4c08-8cfd-009913dc92bd" + "NORTHEUROPE:20201014T073035Z:9aa5dc7d-d58a-41c8-9f8d-ea0a26231ac4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1911,7 +2871,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:31:14 GMT" + "Wed, 14 Oct 2020 07:30:34 GMT" ], "Content-Length": [ "76" @@ -1923,17 +2883,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T19:31:15.487Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-14T07:30:35.013Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Ny9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833/backupShortTermRetentionPolicies/default?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMy9iYWNrdXBTaG9ydFRlcm1SZXRlbnRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMDItMDItcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"retentionDays\": 7,\r\n \"diffBackupIntervalInHours\": 24\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "551bc127-6082-42e9-b335-679545e1c9a0" + "c4565cad-0115-4134-8a19-21875be385d0" ], "Accept-Language": [ "en-US" @@ -1959,16 +2919,16 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/ea0e2d03-7223-4fde-852e-9d3b9e0b160e?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyOperationResults/82569b63-bbd9-4d0a-9734-dbbafdcd5c88?api-version=2020-02-02-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/ea0e2d03-7223-4fde-852e-9d3b9e0b160e?api-version=2020-02-02-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/82569b63-bbd9-4d0a-9734-dbbafdcd5c88?api-version=2020-02-02-preview" ], "x-ms-request-id": [ - "ea0e2d03-7223-4fde-852e-9d3b9e0b160e" + "82569b63-bbd9-4d0a-9734-dbbafdcd5c88" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1977,10 +2937,10 @@ "1193" ], "x-ms-correlation-request-id": [ - "ddefa0ea-376f-46db-8f3d-a2ec2cfbbbba" + "cbd30b33-39b3-4fb7-bfe4-f9e2e19d7dfb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193132Z:ddefa0ea-376f-46db-8f3d-a2ec2cfbbbba" + "NORTHEUROPE:20201014T073052Z:cbd30b33-39b3-4fb7-bfe4-f9e2e19d7dfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1989,7 +2949,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:31:31 GMT" + "Wed, 14 Oct 2020 07:30:52 GMT" ], "Content-Length": [ "75" @@ -2001,12 +2961,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T19:31:32.36Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2020-10-14T07:30:51.99Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/f93c1703-f07a-4b10-a9f4-040b05d40d7a?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi9mOTNjMTcwMy1mMDdhLTRiMTAtYTlmNC0wNDBiMDVkNDBkN2E/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/dc844a27-4d51-4bd2-b819-a661d88cb804?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi9kYzg0NGEyNy00ZDUxLTRiZDItYjgxOS1hNjYxZDg4Y2I4MDQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2028,19 +2988,19 @@ "15" ], "x-ms-request-id": [ - "54bb48c1-6776-4d58-9fe3-c391435fafe6" + "598a33c3-308e-4cf6-af5b-eaf58d314097" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14974" ], "x-ms-correlation-request-id": [ - "548dc0ba-17e5-45c3-b55a-381596c5af2b" + "a27c9f83-bb9b-47ee-91a7-fd585953a094" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193024Z:548dc0ba-17e5-45c3-b55a-381596c5af2b" + "NORTHEUROPE:20201014T072942Z:a27c9f83-bb9b-47ee-91a7-fd585953a094" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2049,7 +3009,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:23 GMT" + "Wed, 14 Oct 2020 07:29:42 GMT" ], "Content-Length": [ "107" @@ -2061,12 +3021,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"f93c1703-f07a-4b10-a9f4-040b05d40d7a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T19:30:08.637Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"dc844a27-4d51-4bd2-b819-a661d88cb804\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-14T07:29:27.303Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/5f5ae838-287f-451a-b2e5-37d6cce1ed1d?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi81ZjVhZTgzOC0yODdmLTQ1MWEtYjJlNS0zN2Q2Y2NlMWVkMWQ/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/88c06a7c-1244-44c2-b3ee-42b7ff0e31b6?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi84OGMwNmE3Yy0xMjQ0LTQ0YzItYjNlZS00MmI3ZmYwZTMxYjY/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2088,19 +3048,19 @@ "15" ], "x-ms-request-id": [ - "669078bd-ba5f-402a-8794-cdb583935a3c" + "ab18d262-31ec-41f6-9977-08f6cef05524" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14971" ], "x-ms-correlation-request-id": [ - "8b7f1d6b-1e1e-40ef-973c-7c3999f0e76e" + "d9329619-2200-412d-8ab8-d72afe49eb34" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193040Z:8b7f1d6b-1e1e-40ef-973c-7c3999f0e76e" + "NORTHEUROPE:20201014T073000Z:d9329619-2200-412d-8ab8-d72afe49eb34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2109,10 +3069,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:40 GMT" + "Wed, 14 Oct 2020 07:30:00 GMT" ], "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2121,12 +3081,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"5f5ae838-287f-451a-b2e5-37d6cce1ed1d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T19:30:25.263Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"88c06a7c-1244-44c2-b3ee-42b7ff0e31b6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-14T07:29:44.11Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/373df742-722b-407a-b3ea-56adda2796f8?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi8zNzNkZjc0Mi03MjJiLTQwN2EtYjNlYS01NmFkZGEyNzk2Zjg/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/61e561f2-00dc-4d2f-be5e-934ef4b2356a?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi82MWU1NjFmMi0wMGRjLTRkMmYtYmU1ZS05MzRlZjRiMjM1NmE/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2148,19 +3108,19 @@ "15" ], "x-ms-request-id": [ - "f1767e06-c75c-4b85-b8bc-e3605b65ea58" + "059fa679-ecf4-472b-aba9-a9b953b993a5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14968" ], "x-ms-correlation-request-id": [ - "ec41f1ee-5c56-4a2b-90cb-2649ef64e99a" + "84e3edd7-9d49-4b9a-82f5-30b822765e24" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193057Z:ec41f1ee-5c56-4a2b-90cb-2649ef64e99a" + "NORTHEUROPE:20201014T073016Z:84e3edd7-9d49-4b9a-82f5-30b822765e24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2169,7 +3129,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:30:57 GMT" + "Wed, 14 Oct 2020 07:30:15 GMT" ], "Content-Length": [ "107" @@ -2181,12 +3141,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"373df742-722b-407a-b3ea-56adda2796f8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T19:30:41.807Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"61e561f2-00dc-4d2f-be5e-934ef4b2356a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-14T07:30:01.313Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/ba5e194e-abfe-463b-8d69-f01314f92cd9?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi9iYTVlMTk0ZS1hYmZlLTQ2M2ItOGQ2OS1mMDEzMTRmOTJjZDk/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/61aaf2da-b1cf-4849-afec-284941e35103?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi82MWFhZjJkYS1iMWNmLTQ4NDktYWZlYy0yODQ5NDFlMzUxMDM/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2208,19 +3168,19 @@ "15" ], "x-ms-request-id": [ - "ce6b9484-4731-4eea-9725-97b424a0ba1c" + "cf40803a-2426-4455-aa44-933f5dea94b8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14965" ], "x-ms-correlation-request-id": [ - "758e4120-d22e-4251-8282-50858fa8acb3" + "0ed95626-694d-4a1e-bae3-5b98bc53f726" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193113Z:758e4120-d22e-4251-8282-50858fa8acb3" + "NORTHEUROPE:20201014T073033Z:0ed95626-694d-4a1e-bae3-5b98bc53f726" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2229,10 +3189,10 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:31:13 GMT" + "Wed, 14 Oct 2020 07:30:33 GMT" ], "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2241,12 +3201,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ba5e194e-abfe-463b-8d69-f01314f92cd9\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T19:30:58.35Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"61aaf2da-b1cf-4849-afec-284941e35103\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-14T07:30:17.973Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/872b46ac-d28c-4ba0-9085-4ada0196ad28?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi84NzJiNDZhYy1kMjhjLTRiYTAtOTA4NS00YWRhMDE5NmFkMjg/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/c869815c-8991-4aea-8fe6-b6bb560b74ee?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi9jODY5ODE1Yy04OTkxLTRhZWEtOGZlNi1iNmJiNTYwYjc0ZWU/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2268,19 +3228,19 @@ "15" ], "x-ms-request-id": [ - "55c93963-7e67-40c4-ae3e-51cd350c8a3b" + "bd4e178a-8cb9-45ed-a2f9-819269a848e2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14961" ], "x-ms-correlation-request-id": [ - "8a7a0ea5-6578-49df-8fdc-43e5678b4c53" + "cd8eacde-5fb4-46e5-871e-86b3aff9a697" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193130Z:8a7a0ea5-6578-49df-8fdc-43e5678b4c53" + "NORTHEUROPE:20201014T073050Z:cd8eacde-5fb4-46e5-871e-86b3aff9a697" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2289,7 +3249,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:31:30 GMT" + "Wed, 14 Oct 2020 07:30:49 GMT" ], "Content-Length": [ "107" @@ -2301,12 +3261,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"872b46ac-d28c-4ba0-9085-4ada0196ad28\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T19:31:15.487Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"c869815c-8991-4aea-8fe6-b6bb560b74ee\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-14T07:30:35.013Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/ea0e2d03-7223-4fde-852e-9d3b9e0b160e?api-version=2020-02-02-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi9lYTBlMmQwMy03MjIzLTRmZGUtODUyZS05ZDNiOWUwYjE2MGU/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/shortTermRetentionPolicyAzureAsyncOperation/82569b63-bbd9-4d0a-9734-dbbafdcd5c88?api-version=2020-02-02-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvc2hvcnRUZXJtUmV0ZW50aW9uUG9saWN5QXp1cmVBc3luY09wZXJhdGlvbi84MjU2OWI2My1iYmQ5LTRkMGEtOTczNC1kYmJhZmRjZDVjODg/YXBpLXZlcnNpb249MjAyMC0wMi0wMi1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2328,19 +3288,19 @@ "15" ], "x-ms-request-id": [ - "2703f31d-25f3-4635-b44c-fef8b3bcce16" + "7e8e801c-a399-4702-b4e2-48e942d9784b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14957" ], "x-ms-correlation-request-id": [ - "3a56536d-d803-4e7d-909a-d64d1df2172c" + "47e6c74b-5a5f-4836-9148-c9d30e196665" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193147Z:3a56536d-d803-4e7d-909a-d64d1df2172c" + "NORTHEUROPE:20201014T073107Z:47e6c74b-5a5f-4836-9148-c9d30e196665" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2349,7 +3309,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:31:47 GMT" + "Wed, 14 Oct 2020 07:31:07 GMT" ], "Content-Length": [ "106" @@ -2361,17 +3321,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ea0e2d03-7223-4fde-852e-9d3b9e0b160e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T19:31:32.36Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"82569b63-bbd9-4d0a-9734-dbbafdcd5c88\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-14T07:30:51.99Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps3167?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMzE2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/servers/pssqlserverfortest/databases/ps2833?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9wc3NxbHNlcnZlcmZvcnRlc3QvZGF0YWJhc2VzL3BzMjgzMz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a772bdc-d986-4df1-90d2-da868f39f48d" + "307ae2db-7d9b-42d1-b572-ddaf9938b720" ], "Accept-Language": [ "en-US" @@ -2391,16 +3351,16 @@ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/54cbe417-39f3-4b98-9991-5c417d14816b?api-version=2019-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/45b45e65-b80e-4dba-8313-da6054195435?api-version=2019-06-01-preview" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/54cbe417-39f3-4b98-9991-5c417d14816b?api-version=2019-06-01-preview" + "https://api-dogfood.resources.windows-int.net/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/45b45e65-b80e-4dba-8313-da6054195435?api-version=2019-06-01-preview" ], "x-ms-request-id": [ - "54cbe417-39f3-4b98-9991-5c417d14816b" + "45b45e65-b80e-4dba-8313-da6054195435" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2409,10 +3369,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "5aa35254-cd29-4c69-8418-0ba69e67668c" + "c9884dee-c6fc-4bb0-8ece-623576df1280" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193149Z:5aa35254-cd29-4c69-8418-0ba69e67668c" + "NORTHEUROPE:20201014T073108Z:c9884dee-c6fc-4bb0-8ece-623576df1280" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2421,7 +3381,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:31:48 GMT" + "Wed, 14 Oct 2020 07:31:08 GMT" ], "Content-Length": [ "73" @@ -2433,12 +3393,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"operation\": \"DropLogicalDatabase\",\r\n \"startTime\": \"2020-10-13T19:31:49.29Z\"\r\n}", + "ResponseBody": "{\r\n \"operation\": \"DropLogicalDatabase\",\r\n \"startTime\": \"2020-10-14T07:31:08.86Z\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/54cbe417-39f3-4b98-9991-5c417d14816b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzU0Y2JlNDE3LTM5ZjMtNGI5OC05OTkxLTVjNDE3ZDE0ODE2Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseAzureAsyncOperation/45b45e65-b80e-4dba-8313-da6054195435?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VBenVyZUFzeW5jT3BlcmF0aW9uLzQ1YjQ1ZTY1LWI4MGUtNGRiYS04MzEzLWRhNjA1NDE5NTQzNT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2460,19 +3420,19 @@ "15" ], "x-ms-request-id": [ - "ca286747-35b1-48aa-bad6-54e9276c8f82" + "b4938b75-1438-4fc7-a516-00d61ad555d4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14953" ], "x-ms-correlation-request-id": [ - "b1048716-cb42-467e-a157-48053c4bf6bc" + "c8f770bf-9c7c-4fc6-9aa3-2a1a82a52e35" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193204Z:b1048716-cb42-467e-a157-48053c4bf6bc" + "NORTHEUROPE:20201014T073124Z:c8f770bf-9c7c-4fc6-9aa3-2a1a82a52e35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2481,7 +3441,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:32:04 GMT" + "Wed, 14 Oct 2020 07:31:24 GMT" ], "Content-Length": [ "106" @@ -2493,12 +3453,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"54cbe417-39f3-4b98-9991-5c417d14816b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-13T19:31:49.29Z\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"45b45e65-b80e-4dba-8313-da6054195435\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-10-14T07:31:08.86Z\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/54cbe417-39f3-4b98-9991-5c417d14816b?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VPcGVyYXRpb25SZXN1bHRzLzU0Y2JlNDE3LTM5ZjMtNGI5OC05OTkxLTVjNDE3ZDE0ODE2Yj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/4b6aaaf2-6fd8-418b-a06d-6ede39a32270/resourceGroups/PowershellStageResourceGroup/providers/Microsoft.Sql/locations/southeastasia/databaseOperationResults/45b45e65-b80e-4dba-8313-da6054195435?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGI2YWFhZjItNmZkOC00MThiLWEwNmQtNmVkZTM5YTMyMjcwL3Jlc291cmNlR3JvdXBzL1Bvd2Vyc2hlbGxTdGFnZVJlc291cmNlR3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3NvdXRoZWFzdGFzaWEvZGF0YWJhc2VPcGVyYXRpb25SZXN1bHRzLzQ1YjQ1ZTY1LWI4MGUtNGRiYS04MzEzLWRhNjA1NDE5NTQzNT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2517,19 +3477,19 @@ "no-cache" ], "x-ms-request-id": [ - "e6d06724-58d1-4f9c-a8a9-de1c565d9f26" + "1fc84cb1-f58d-41c3-8a2e-895c06f426e0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14952" ], "x-ms-correlation-request-id": [ - "ea0c53ed-7ae3-4e55-b283-5c35679587fb" + "124f2939-e28c-4e40-ba9a-6b93079198ce" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201013T193205Z:ea0c53ed-7ae3-4e55-b283-5c35679587fb" + "NORTHEUROPE:20201014T073124Z:124f2939-e28c-4e40-ba9a-6b93079198ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2538,7 +3498,7 @@ "nosniff" ], "Date": [ - "Tue, 13 Oct 2020 19:32:04 GMT" + "Wed, 14 Oct 2020 07:31:24 GMT" ], "Expires": [ "-1" @@ -2553,7 +3513,7 @@ ], "Names": { "Test-ShortTermRetentionPolicy": [ - "ps3167" + "ps2833" ] }, "Variables": { diff --git a/src/Sql/Sql/Database Backup/Cmdlet/SetAzureSqlDatabaseBackupShortTermRetentionPolicy.cs b/src/Sql/Sql/Database Backup/Cmdlet/SetAzureSqlDatabaseBackupShortTermRetentionPolicy.cs index 0cdec7ec894d..5917d386c557 100644 --- a/src/Sql/Sql/Database Backup/Cmdlet/SetAzureSqlDatabaseBackupShortTermRetentionPolicy.cs +++ b/src/Sql/Sql/Database Backup/Cmdlet/SetAzureSqlDatabaseBackupShortTermRetentionPolicy.cs @@ -30,6 +30,7 @@ public class SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy : AzureSqlDatab /// Gets or sets backup retention days. /// [Parameter(Mandatory = false, + Position = 3, HelpMessage = "The backup retention setting, in days.")] public int RetentionDays { get; set; } @@ -37,6 +38,7 @@ public class SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy : AzureSqlDatab /// Gets or sets differential backup interval hours. /// [Parameter(Mandatory = false, + Position = 4, HelpMessage = "The differential backup interval, in hours.")] public int DiffBackupIntervalInHours { get; set; } diff --git a/src/Sql/Sql/help/Get-AzSqlDatabaseBackupShortTermRetentionPolicy.md b/src/Sql/Sql/help/Get-AzSqlDatabaseBackupShortTermRetentionPolicy.md index fe2172229686..8396c5b525ec 100644 --- a/src/Sql/Sql/help/Get-AzSqlDatabaseBackupShortTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Get-AzSqlDatabaseBackupShortTermRetentionPolicy.md @@ -84,7 +84,7 @@ Parameter Sets: PolicyByResourceServerDatabaseSet Aliases: Required: True -Position: Named +Position: 2 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False @@ -114,7 +114,7 @@ Parameter Sets: PolicyByResourceServerDatabaseSet Aliases: Required: True -Position: Named +Position: 0 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False @@ -144,7 +144,7 @@ Parameter Sets: PolicyByResourceServerDatabaseSet Aliases: Required: True -Position: Named +Position: 1 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False diff --git a/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md b/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md index f5f25461c652..5e51f3a0e4ff 100644 --- a/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md @@ -77,7 +77,7 @@ Parameter Sets: PolicyByResourceServerDatabaseSet Aliases: Required: True -Position: Named +Position: 0 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False @@ -92,7 +92,7 @@ Parameter Sets: PolicyByResourceServerDatabaseSet Aliases: Required: True -Position: Named +Position: 1 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False @@ -107,7 +107,7 @@ Parameter Sets: PolicyByResourceServerDatabaseSet Aliases: Required: True -Position: Named +Position: 2 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False @@ -122,6 +122,7 @@ Parameter Sets: (All) Aliases: Required: True +Position: 3 Default value: 7 Accept pipeline input: False Accept wildcard characters: False @@ -136,6 +137,7 @@ Parameter Sets: (All) Aliases: Required: True +Position: 4 Default value: 24 Accept pipeline input: False Accept wildcard characters: False diff --git a/tools/StaticAnalysis/Exceptions/Az.Sql/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Sql/BreakingChangeIssues.csv index 2429f0782eef..c743d40ca4e6 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Sql/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Sql/BreakingChangeIssues.csv @@ -1,4 +1,6 @@ "AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Cmdlet.SetAzureSqlServerActiveDirectoryAdministrator","Set-AzSqlServerActiveDirectoryAdministrator","0","2000","The cmdlet 'Set-AzSqlServerActiveDirectoryAdministrator' no longer supports the parameter 'IsAzureADOnlyAuthentication' and no alias was found for the original parameter name.","Add the parameter 'IsAzureADOnlyAuthentication' back to the cmdlet 'Set-AzSqlServerActiveDirectoryAdministrator', or add an alias to the original parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Cmdlet.SetAzureSqlServerActiveDirectoryAdministrator","Set-AzSqlServerActiveDirectoryAdministrator","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Set-AzSqlServerActiveDirectoryAdministrator' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Set-AzSqlServerActiveDirectoryAdministrator'." -"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Cmdlet.DisableAzureSqlServerActiveDirectoryOnlyAuthentication","Disable-AzSqlServerActiveDirectoryOnlyAuthentication","0","1020","The cmdlet 'Disable-AzSqlServerActiveDirectoryOnlyAuthentication' no longer has output type 'Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel'.","Make cmdlet 'Disable-AzSqlServerActiveDirectoryOnlyAuthentication' return type 'Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel'." \ No newline at end of file +"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Cmdlet.DisableAzureSqlServerActiveDirectoryOnlyAuthentication","Disable-AzSqlServerActiveDirectoryOnlyAuthentication","0","1020","The cmdlet 'Disable-AzSqlServerActiveDirectoryOnlyAuthentication' no longer has output type 'Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel'.","Make cmdlet 'Disable-AzSqlServerActiveDirectoryOnlyAuthentication' return type 'Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel'." +"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Backup.Cmdlet.GetAzureRmSqlDatabaseBackupShortTermRetentionPolicy","Get-AzSqlDatabaseBackupShortTermRetentionPolicy","0","3000","The type of property 'RetentionDays' of type 'Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel' has changed from 'System.Int32' to 'System.Nullable`1[System.Int32]'.","Change the type of property 'RetentionDays' back to 'System.Int32'." +"Microsoft.Azure.PowerShell.Cmdlets.Sql.dll","Microsoft.Azure.Commands.Sql.Backup.Cmdlet.SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy","Set-AzSqlDatabaseBackupShortTermRetentionPolicy","0","3000","The type of property 'RetentionDays' of type 'Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel' has changed from 'System.Int32' to 'System.Nullable`1[System.Int32]'.","Change the type of property 'RetentionDays' back to 'System.Int32'." \ No newline at end of file From da515dcde4e874ea0f0bf3945d5f8301a7919f93 Mon Sep 17 00:00:00 2001 From: Yeming Liu Date: Thu, 15 Oct 2020 00:00:03 +0800 Subject: [PATCH 6/6] undid position of DiffBackupIntervalInHours --- ...lDatabaseBackupShortTermRetentionPolicy.cs | 1 - ...lDatabaseBackupShortTermRetentionPolicy.md | 108 +++++++++--------- 2 files changed, 55 insertions(+), 54 deletions(-) diff --git a/src/Sql/Sql/Database Backup/Cmdlet/SetAzureSqlDatabaseBackupShortTermRetentionPolicy.cs b/src/Sql/Sql/Database Backup/Cmdlet/SetAzureSqlDatabaseBackupShortTermRetentionPolicy.cs index 5917d386c557..ace0103ad692 100644 --- a/src/Sql/Sql/Database Backup/Cmdlet/SetAzureSqlDatabaseBackupShortTermRetentionPolicy.cs +++ b/src/Sql/Sql/Database Backup/Cmdlet/SetAzureSqlDatabaseBackupShortTermRetentionPolicy.cs @@ -38,7 +38,6 @@ public class SetAzureRmSqlDatabaseBackupShortTermRetentionPolicy : AzureSqlDatab /// Gets or sets differential backup interval hours. /// [Parameter(Mandatory = false, - Position = 4, HelpMessage = "The differential backup interval, in hours.")] public int DiffBackupIntervalInHours { get; set; } diff --git a/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md b/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md index 5e51f3a0e4ff..5c6f96988c66 100644 --- a/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md +++ b/src/Sql/Sql/help/Set-AzSqlDatabaseBackupShortTermRetentionPolicy.md @@ -14,20 +14,22 @@ Sets a backup short term retention policy. ### PolicyByResourceServerDatabaseSet (Default) ``` -Set-AzSqlDatabaseBackupShortTermRetentionPolicy [-ResourceGroupName] [-ServerName] [-DatabaseName] -[-RetentionDays ] [-DiffBackupIntervalInHours ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Set-AzSqlDatabaseBackupShortTermRetentionPolicy [[-RetentionDays] ] [-DiffBackupIntervalInHours ] + [-ResourceGroupName] [-ServerName] [-DatabaseName] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### PolicyByInputObjectSet ``` -Set-AzSqlDatabaseBackupShortTermRetentionPolicy [-DatabaseName] [-RetentionDays ] [-DiffBackupIntervalInHours ] -[-DefaultProfile ] [-WhatIf] [-Confirm] [] +Set-AzSqlDatabaseBackupShortTermRetentionPolicy [[-RetentionDays] ] [-DiffBackupIntervalInHours ] + -AzureSqlDatabaseObject [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### PolicyByResourceIdSet ``` -Set-AzSqlDatabaseBackupShortTermRetentionPolicy -ResourceId [-RetentionDays ] [-DiffBackupIntervalInHours ] -[-DefaultProfile ] [-WhatIf] [-Confirm] [] +Set-AzSqlDatabaseBackupShortTermRetentionPolicy [[-RetentionDays] ] [-DiffBackupIntervalInHours ] + -ResourceId [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -68,33 +70,18 @@ This command sets the short term retention policy for database01 to 7 retention ## PARAMETERS -### -ResourceGroupName -The name of the resource group. - -```yaml -Type: System.String -Parameter Sets: PolicyByResourceServerDatabaseSet -Aliases: - -Required: True -Position: 0 -Default value: None -Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False -``` - -### -ServerName -The name of the Azure SQL Server the database is in. +### -AzureSqlDatabaseObject +The database object to get the policy for. ```yaml -Type: System.String -Parameter Sets: PolicyByResourceServerDatabaseSet -Aliases: +Type: Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel +Parameter Sets: PolicyByInputObjectSet +Aliases: AzureSqlDatabase Required: True -Position: 1 +Position: Named Default value: None -Accept pipeline input: True (ByPropertyName) +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -113,17 +100,17 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -RetentionDays -The backup retention setting, in days. +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: System.Int32 +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) -Aliases: +Aliases: AzContext, AzureRmContext, AzureCredential -Required: True -Position: 3 -Default value: 7 +Required: False +Position: Named +Default value: None Accept pipeline input: False Accept wildcard characters: False ``` @@ -136,58 +123,73 @@ Type: System.Int32 Parameter Sets: (All) Aliases: -Required: True -Position: 4 +Required: False +Position: Named Default value: 24 Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceId -The short term retention policy resource Id. +### -ResourceGroupName +The name of the resource group. ```yaml Type: System.String -Parameter Sets: PolicyByResourceIdSet +Parameter Sets: PolicyByResourceServerDatabaseSet Aliases: Required: True -Position: Named +Position: 0 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -AzureSqlDatabaseObject -The database object to get the policy for. +### -ResourceId +The short term retention policy resource Id. ```yaml -Type: Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel -Parameter Sets: PolicyByInputObjectSet -Aliases: AzureSqlDatabase +Type: System.String +Parameter Sets: PolicyByResourceIdSet +Aliases: Required: True Position: Named Default value: None -Accept pipeline input: True (ByValue) +Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. +### -RetentionDays +The backup retention setting, in days. ```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Type: System.Int32 Parameter Sets: (All) -Aliases: AzContext, AzureRmContext, AzureCredential +Aliases: Required: False -Position: Named -Default value: None +Position: 3 +Default value: 7 Accept pipeline input: False Accept wildcard characters: False ``` +### -ServerName +The name of the Azure SQL Server the database is in. + +```yaml +Type: System.String +Parameter Sets: PolicyByResourceServerDatabaseSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet.