From 6443496927856d18ddf274cc01cd0c89301672da Mon Sep 17 00:00:00 2001 From: Sambit Rath Date: Sat, 21 Mar 2020 21:13:59 +0530 Subject: [PATCH 1/2] Added user rg feature --- .../Conversions/ConversionHelpers.cs | 4 + .../AzureVmModels/AzureVmPolicy.cs | 12 + .../Providers/IaasVmPsBackupProvider.cs | 5 +- .../ScenarioTests/IaasVm/PolicyTests.ps1 | 4 + .../TestAzureVMPolicy.json | 476 +++++++++--------- ...zRecoveryServicesBackupProtectionPolicy.md | 3 + 6 files changed, 265 insertions(+), 239 deletions(-) diff --git a/src/RecoveryServices/RecoveryServices.Backup.Helpers/Conversions/ConversionHelpers.cs b/src/RecoveryServices/RecoveryServices.Backup.Helpers/Conversions/ConversionHelpers.cs index 919a62dfdd28..715b19d5327e 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Helpers/Conversions/ConversionHelpers.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Helpers/Conversions/ConversionHelpers.cs @@ -170,6 +170,10 @@ public static PolicyBase GetPolicyModelForAzureIaaSVM(ServiceClientModel.Protect iaasPolicyModel.SchedulePolicy = PolicyHelpers.GetPSSimpleSchedulePolicy((ServiceClientModel.SimpleSchedulePolicy) ((ServiceClientModel.AzureIaaSVMProtectionPolicy)serviceClientResponse.Properties).SchedulePolicy, ((ServiceClientModel.AzureIaaSVMProtectionPolicy)serviceClientResponse.Properties).TimeZone); + iaasPolicyModel.AzureBackupRGName = + ((ServiceClientModel.AzureIaaSVMProtectionPolicy)serviceClientResponse.Properties).InstantRPDetails.AzureBackupRGNamePrefix; + iaasPolicyModel.AzureBackupRGNameSuffix = + ((ServiceClientModel.AzureIaaSVMProtectionPolicy)serviceClientResponse.Properties).InstantRPDetails.AzureBackupRGNameSuffix; return policyModel; } diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/AzureVmModels/AzureVmPolicy.cs b/src/RecoveryServices/RecoveryServices.Backup.Models/AzureVmModels/AzureVmPolicy.cs index cf94cfc0cbf8..547b665a43e2 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Models/AzureVmModels/AzureVmPolicy.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Models/AzureVmModels/AzureVmPolicy.cs @@ -12,6 +12,8 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.Azure.Commands.Common.Compute.Version_2018_04.Models; + namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models { /// @@ -28,6 +30,16 @@ public class AzureVmPolicy : AzurePolicy /// Object defining the number of associated items for the policy /// public int? ProtectedItemsCount { get; set; } + + /// + /// object defining the RG Name to store Restore Points + /// + public string AzureBackupRGName { get; set; } + + /// + /// object defining the RG Name suffix to store Restore Points + /// + public string AzureBackupRGNameSuffix { get; set; } } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/IaasVmPsBackupProvider.cs b/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/IaasVmPsBackupProvider.cs index 05f77b67899e..6961fc8c079d 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/IaasVmPsBackupProvider.cs +++ b/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/IaasVmPsBackupProvider.cs @@ -753,7 +753,10 @@ public RestAzureNS.AzureOperationResponse ModifyPolicy SchedulePolicy = PolicyHelpers.GetServiceClientSimpleSchedulePolicy( (CmdletModel.SimpleSchedulePolicy)((AzureVmPolicy)policy).SchedulePolicy), TimeZone = DateTimeKind.Utc.ToString().ToUpper(), - InstantRpRetentionRangeInDays = ((AzureVmPolicy)policy).SnapshotRetentionInDays + InstantRpRetentionRangeInDays = ((AzureVmPolicy)policy).SnapshotRetentionInDays, + InstantRPDetails = new InstantRPAdditionalDetails( + ((AzureVmPolicy)policy).AzureBackupRGName, + ((AzureVmPolicy)policy).AzureBackupRGNameSuffix) } }; diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/PolicyTests.ps1 b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/PolicyTests.ps1 index 509c1eff0e7f..d369c0769e23 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/PolicyTests.ps1 +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/PolicyTests.ps1 @@ -18,6 +18,8 @@ $policyName = "PsTestPolicy"; $defaultPolicyName = "DefaultPolicy"; $DefaultSnapshotDays = 2; $UpdatedSnapShotDays = 5; +$rgPrefix = "RecoveryServices"; +$rgsuffix = "Policy"; # Test old polices in the VaultId $oldResourceGroupName = "sambit_rg" @@ -78,6 +80,8 @@ function Test-AzureVMPolicy #update snapshot days $policy.SnapshotRetentionInDays = $UpdatedSnapShotDays; + $policy.AzureBackupRGName = $rgPrefix; + $policy.AzureBackupRGNameSuffix = $rgsuffix; # Update policy Set-AzRecoveryServicesBackupProtectionPolicy ` diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVMPolicy.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVMPolicy.json index f950e914bfbe..4826269d13e9 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVMPolicy.json +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVMPolicy.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG25077474?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRGa4694aff?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfe27ea4-4721-4cb3-9010-afedaccfb7f6" + "8615de17-f732-42e6-8e3c-b8de1fc60378" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.28207.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" ] }, "ResponseHeaders": { @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "1024ddef-b39e-43e9-b41e-fa9cdd5ec21f" + "0a154f24-882a-47b2-a056-e49c950d1ed9" ], "x-ms-correlation-request-id": [ - "1024ddef-b39e-43e9-b41e-fa9cdd5ec21f" + "0a154f24-882a-47b2-a056-e49c950d1ed9" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133137Z:1024ddef-b39e-43e9-b41e-fa9cdd5ec21f" + "CENTRALUSEUAP:20200321T153859Z:0a154f24-882a-47b2-a056-e49c950d1ed9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Sun, 02 Feb 2020 13:31:37 GMT" + "Sat, 21 Mar 2020 15:38:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,17 +60,17 @@ "108" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG25077474' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRGa4694aff' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG25077474?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRGa4694aff?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63519c8b-28b5-4fcb-a93f-4f08c6bdc221" + "4f457804-13e2-4f69-a4a5-ec3bbb549c0b" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.28207.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" ] }, "ResponseHeaders": { @@ -90,16 +90,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "e5394fd6-8f91-46b9-b828-43e52def7802" + "f1bc488d-7083-4076-a31e-31f458309189" ], "x-ms-correlation-request-id": [ - "e5394fd6-8f91-46b9-b828-43e52def7802" + "f1bc488d-7083-4076-a31e-31f458309189" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133207Z:e5394fd6-8f91-46b9-b828-43e52def7802" + "CENTRALUSEUAP:20200321T153939Z:f1bc488d-7083-4076-a31e-31f458309189" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +108,7 @@ "nosniff" ], "Date": [ - "Sun, 02 Feb 2020 13:32:06 GMT" + "Sat, 21 Mar 2020 15:39:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,17 +120,17 @@ "192" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474\",\r\n \"name\": \"PSTestRG25077474\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff\",\r\n \"name\": \"PSTestRGa4694aff\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG25077474?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRGa4694aff?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8dc8f094-e5ff-44cb-aa6a-58875395285f" + "63a227a2-08a5-4d9c-a7c5-aa8909a24459" ], "Accept-Language": [ "en-US" @@ -139,7 +139,7 @@ "FxVersion/4.6.28207.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +159,13 @@ "1199" ], "x-ms-request-id": [ - "900299f3-b3c7-4182-9371-525dff4403d9" + "28d82d6d-1136-45b9-ab8e-039d667d0ee1" ], "x-ms-correlation-request-id": [ - "900299f3-b3c7-4182-9371-525dff4403d9" + "28d82d6d-1136-45b9-ab8e-039d667d0ee1" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133144Z:900299f3-b3c7-4182-9371-525dff4403d9" + "CENTRALUSEUAP:20200321T153906Z:28d82d6d-1136-45b9-ab8e-039d667d0ee1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,7 +174,7 @@ "nosniff" ], "Date": [ - "Sun, 02 Feb 2020 13:31:44 GMT" + "Sat, 21 Mar 2020 15:39:06 GMT" ], "Content-Length": [ "192" @@ -186,17 +186,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474\",\r\n \"name\": \"PSTestRG25077474\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff\",\r\n \"name\": \"PSTestRGa4694aff\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8bc7bc8f-eca1-491d-81be-968c8459fea7-2020-02-02 13:31:45Z-P" + "6fbc3bc1-75f5-4527-85b0-c2c1ca5d3724-2020-03-21 15:39:06Z-P" ], "Accept-Language": [ "en-US" @@ -219,13 +219,13 @@ "gateway" ], "x-ms-request-id": [ - "1de70e93-4f85-4439-b2a3-9450f9665096" + "4ad7b32b-2f77-4082-a313-feb7b238c47b" ], "x-ms-correlation-request-id": [ - "1de70e93-4f85-4439-b2a3-9450f9665096" + "4ad7b32b-2f77-4082-a313-feb7b238c47b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133145Z:1de70e93-4f85-4439-b2a3-9450f9665096" + "CENTRALUSEUAP:20200321T153908Z:4ad7b32b-2f77-4082-a313-feb7b238c47b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,7 +234,7 @@ "nosniff" ], "Date": [ - "Sun, 02 Feb 2020 13:31:45 GMT" + "Sat, 21 Mar 2020 15:39:08 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -246,17 +246,17 @@ "171" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV25077474' under resource group 'PSTestRG25077474' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff' under resource group 'PSTestRGa4694aff' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3eba6359-e8f0-4b2e-975a-f17576e6081f-2020-02-02 13:31:46Z-P" + "f3a7d72e-827a-4112-af99-d502b22f8d72-2020-03-21 15:39:08Z-P" ], "Accept-Language": [ "en-US" @@ -285,10 +285,10 @@ "nosniff" ], "x-ms-request-id": [ - "9156bcf9-2370-4f27-b94f-3f146d3d647b" + "e80f485c-d261-4ca4-91b3-889b707b03ce" ], "x-ms-client-request-id": [ - "3eba6359-e8f0-4b2e-975a-f17576e6081f-2020-02-02 13:31:46Z-P" + "f3a7d72e-827a-4112-af99-d502b22f8d72-2020-03-21 15:39:08Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,16 +300,16 @@ "199" ], "x-ms-correlation-request-id": [ - "9156bcf9-2370-4f27-b94f-3f146d3d647b" + "e80f485c-d261-4ca4-91b3-889b707b03ce" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133158Z:9156bcf9-2370-4f27-b94f-3f146d3d647b" + "CENTRALUSEUAP:20200321T153929Z:e80f485c-d261-4ca4-91b3-889b707b03ce" ], "Date": [ - "Sun, 02 Feb 2020 13:31:58 GMT" + "Sat, 21 Mar 2020 15:39:29 GMT" ], "Content-Length": [ - "351" + "466" ], "Content-Type": [ "application/json" @@ -318,17 +318,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV25077474\",\r\n \"etag\": \"W/\\\"datetime'2020-02-02T13%3A31%3A56.9489053Z'\\\"\",\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVa4694aff\",\r\n \"etag\": \"W/\\\"datetime'2020-03-21T15%3A39%3A28.1714167Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy?api-version=2019-06-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==", + "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy?api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5616a5a-b7e7-45b9-9474-a3d359e54505" + "b7eba1d0-d8a7-43a2-81bc-434ab34c4d5b" ], "Accept-Language": [ "en-US" @@ -351,11 +351,11 @@ "nosniff" ], "x-ms-request-id": [ - "1249c4c7-f8d6-43a3-95bc-eed5fef5b791" + "5b4bc556-86bf-4181-a8eb-fade978c8a56" ], "x-ms-client-request-id": [ - "c5616a5a-b7e7-45b9-9474-a3d359e54505", - "c5616a5a-b7e7-45b9-9474-a3d359e54505" + "b7eba1d0-d8a7-43a2-81bc-434ab34c4d5b", + "b7eba1d0-d8a7-43a2-81bc-434ab34c4d5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -367,16 +367,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "1249c4c7-f8d6-43a3-95bc-eed5fef5b791" + "5b4bc556-86bf-4181-a8eb-fade978c8a56" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133159Z:1249c4c7-f8d6-43a3-95bc-eed5fef5b791" + "CENTRALUSEUAP:20200321T153931Z:5b4bc556-86bf-4181-a8eb-fade978c8a56" ], "Date": [ - "Sun, 02 Feb 2020 13:31:59 GMT" + "Sat, 21 Mar 2020 15:39:31 GMT" ], "Content-Length": [ "2" @@ -392,13 +392,13 @@ "StatusCode": 404 }, { - "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy?api-version=2019-06-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==", + "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy?api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d9a4bd5-216c-4035-a53e-caa993482f9a" + "2ffdb392-a54b-49ea-9a90-f932929830f5" ], "Accept-Language": [ "en-US" @@ -421,11 +421,11 @@ "nosniff" ], "x-ms-request-id": [ - "1fae79a3-f141-4332-9632-2e96e48fd2fb" + "fa8c49e7-b8ee-4ff7-8dab-9655c42dccb6" ], "x-ms-client-request-id": [ - "7d9a4bd5-216c-4035-a53e-caa993482f9a", - "7d9a4bd5-216c-4035-a53e-caa993482f9a" + "2ffdb392-a54b-49ea-9a90-f932929830f5", + "2ffdb392-a54b-49ea-9a90-f932929830f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -437,16 +437,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-correlation-request-id": [ - "1fae79a3-f141-4332-9632-2e96e48fd2fb" + "fa8c49e7-b8ee-4ff7-8dab-9655c42dccb6" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133201Z:1fae79a3-f141-4332-9632-2e96e48fd2fb" + "CENTRALUSEUAP:20200321T153933Z:fa8c49e7-b8ee-4ff7-8dab-9655c42dccb6" ], "Date": [ - "Sun, 02 Feb 2020 13:32:01 GMT" + "Sat, 21 Mar 2020 15:39:32 GMT" ], "Content-Length": [ "1407" @@ -458,17 +458,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy?api-version=2019-06-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==", + "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy?api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be206ff8-f27e-4bdc-bb09-cfc38f853e91" + "c9947cd8-fb15-43d8-93e5-939acaf67a88" ], "Accept-Language": [ "en-US" @@ -491,11 +491,11 @@ "nosniff" ], "x-ms-request-id": [ - "3f9ed01c-ddea-4e4e-98d4-2fd962485b86" + "e7b1d765-77e1-46ea-91d3-c08958d0e0c2" ], "x-ms-client-request-id": [ - "be206ff8-f27e-4bdc-bb09-cfc38f853e91", - "be206ff8-f27e-4bdc-bb09-cfc38f853e91" + "c9947cd8-fb15-43d8-93e5-939acaf67a88", + "c9947cd8-fb15-43d8-93e5-939acaf67a88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,16 +507,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-correlation-request-id": [ - "3f9ed01c-ddea-4e4e-98d4-2fd962485b86" + "e7b1d765-77e1-46ea-91d3-c08958d0e0c2" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133203Z:3f9ed01c-ddea-4e4e-98d4-2fd962485b86" + "CENTRALUSEUAP:20200321T153935Z:e7b1d765-77e1-46ea-91d3-c08958d0e0c2" ], "Date": [ - "Sun, 02 Feb 2020 13:32:02 GMT" + "Sat, 21 Mar 2020 15:39:35 GMT" ], "Content-Length": [ "1407" @@ -528,17 +528,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy?api-version=2019-06-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==", + "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy?api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "018bc079-7661-4452-9f81-560670303766" + "260021f5-8302-410c-9a85-0d614d122bce" ], "Accept-Language": [ "en-US" @@ -561,11 +561,11 @@ "nosniff" ], "x-ms-request-id": [ - "aaa76571-3d8e-414a-aaf7-d29f9bc4abd2" + "4c4966cd-7274-4cb7-917c-1314f883a756" ], "x-ms-client-request-id": [ - "018bc079-7661-4452-9f81-560670303766", - "018bc079-7661-4452-9f81-560670303766" + "260021f5-8302-410c-9a85-0d614d122bce", + "260021f5-8302-410c-9a85-0d614d122bce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -577,16 +577,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11992" ], "x-ms-correlation-request-id": [ - "aaa76571-3d8e-414a-aaf7-d29f9bc4abd2" + "4c4966cd-7274-4cb7-917c-1314f883a756" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133204Z:aaa76571-3d8e-414a-aaf7-d29f9bc4abd2" + "CENTRALUSEUAP:20200321T153936Z:4c4966cd-7274-4cb7-917c-1314f883a756" ], "Date": [ - "Sun, 02 Feb 2020 13:32:03 GMT" + "Sat, 21 Mar 2020 15:39:36 GMT" ], "Content-Length": [ "1407" @@ -598,17 +598,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy?api-version=2019-06-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==", + "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy?api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fe6a059-706c-4a55-a804-33bbb297bf9b" + "7ac50759-f475-4e49-b5b7-22a329d88406" ], "Accept-Language": [ "en-US" @@ -631,11 +631,11 @@ "nosniff" ], "x-ms-request-id": [ - "ed76b4a7-2394-447c-9c4d-21e2af3f2bf9" + "4f608274-8089-4dfe-84d9-8c05bd3f554e" ], "x-ms-client-request-id": [ - "0fe6a059-706c-4a55-a804-33bbb297bf9b", - "0fe6a059-706c-4a55-a804-33bbb297bf9b" + "7ac50759-f475-4e49-b5b7-22a329d88406", + "7ac50759-f475-4e49-b5b7-22a329d88406" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -647,19 +647,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11991" ], "x-ms-correlation-request-id": [ - "ed76b4a7-2394-447c-9c4d-21e2af3f2bf9" + "4f608274-8089-4dfe-84d9-8c05bd3f554e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133206Z:ed76b4a7-2394-447c-9c4d-21e2af3f2bf9" + "CENTRALUSEUAP:20200321T153937Z:4f608274-8089-4dfe-84d9-8c05bd3f554e" ], "Date": [ - "Sun, 02 Feb 2020 13:32:06 GMT" + "Sat, 21 Mar 2020 15:39:37 GMT" ], "Content-Length": [ - "1407" + "1486" ], "Content-Type": [ "application/json" @@ -668,17 +668,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {\r\n \"azureBackupRGNamePrefix\": \"RecoveryServices\",\r\n \"azureBackupRGNameSuffix\": \"Policy\"\r\n },\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy?api-version=2019-06-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==", + "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy?api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c53f4841-136e-45fa-a21a-38df8e6726d5" + "d65add22-7e4b-4dee-8a47-739239e72046" ], "Accept-Language": [ "en-US" @@ -707,11 +707,11 @@ "nosniff" ], "x-ms-request-id": [ - "7c7dc40e-fdcf-4f1d-adf6-b4e185b0cb0e" + "2dd278f8-3668-4d1c-9a51-b7c3da76719a" ], "x-ms-client-request-id": [ - "c53f4841-136e-45fa-a21a-38df8e6726d5", - "c53f4841-136e-45fa-a21a-38df8e6726d5" + "d65add22-7e4b-4dee-8a47-739239e72046", + "d65add22-7e4b-4dee-8a47-739239e72046" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -723,16 +723,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "7c7dc40e-fdcf-4f1d-adf6-b4e185b0cb0e" + "2dd278f8-3668-4d1c-9a51-b7c3da76719a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133201Z:7c7dc40e-fdcf-4f1d-adf6-b4e185b0cb0e" + "CENTRALUSEUAP:20200321T153932Z:2dd278f8-3668-4d1c-9a51-b7c3da76719a" ], "Date": [ - "Sun, 02 Feb 2020 13:32:01 GMT" + "Sat, 21 Mar 2020 15:39:32 GMT" ], "Content-Length": [ "1407" @@ -744,17 +744,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy?api-version=2019-06-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==", + "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy?api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {\r\n \"azureBackupRGNamePrefix\": \"RecoveryServices\",\r\n \"azureBackupRGNameSuffix\": \"Policy\"\r\n },\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e5fef035-3952-4912-a2cf-27f2ab5529c2" + "2c949893-3fe7-4484-83d8-b09a3b103e08" ], "Accept-Language": [ "en-US" @@ -769,7 +769,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "1864" + "1996" ] }, "ResponseHeaders": { @@ -783,11 +783,11 @@ "nosniff" ], "x-ms-request-id": [ - "892ad3ab-e3e5-4762-ac7a-fc3bb77a5819" + "b6727ae4-0ca9-486b-ad12-8d7164ad2022" ], "x-ms-client-request-id": [ - "e5fef035-3952-4912-a2cf-27f2ab5529c2", - "e5fef035-3952-4912-a2cf-27f2ab5529c2" + "2c949893-3fe7-4484-83d8-b09a3b103e08", + "2c949893-3fe7-4484-83d8-b09a3b103e08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -799,19 +799,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "892ad3ab-e3e5-4762-ac7a-fc3bb77a5819" + "b6727ae4-0ca9-486b-ad12-8d7164ad2022" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133205Z:892ad3ab-e3e5-4762-ac7a-fc3bb77a5819" + "CENTRALUSEUAP:20200321T153937Z:b6727ae4-0ca9-486b-ad12-8d7164ad2022" ], "Date": [ - "Sun, 02 Feb 2020 13:32:05 GMT" + "Sat, 21 Mar 2020 15:39:37 GMT" ], "Content-Length": [ - "1407" + "1486" ], "Content-Type": [ "application/json" @@ -820,7 +820,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {\r\n \"azureBackupRGNamePrefix\": \"RecoveryServices\",\r\n \"azureBackupRGNameSuffix\": \"Policy\"\r\n },\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { @@ -830,7 +830,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e5b1df7-bb97-4642-b7d9-8b24042cef27-2020-02-02 13:32:01Z-P" + "448d5952-cc18-4212-b108-3345a777224b-2020-03-21 15:39:33Z-P" ], "Accept-Language": [ "en-US" @@ -853,10 +853,10 @@ "nosniff" ], "x-ms-request-id": [ - "e77f632a-e951-4c20-8255-df08eba78978" + "44921b98-47e9-4e1e-97b5-ceeeb61bf54b" ], "x-ms-client-request-id": [ - "0e5b1df7-bb97-4642-b7d9-8b24042cef27-2020-02-02 13:32:01Z-P" + "448d5952-cc18-4212-b108-3345a777224b-2020-03-21 15:39:33Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -865,19 +865,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "e77f632a-e951-4c20-8255-df08eba78978" + "44921b98-47e9-4e1e-97b5-ceeeb61bf54b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133202Z:e77f632a-e951-4c20-8255-df08eba78978" + "CENTRALUSEUAP:20200321T153933Z:44921b98-47e9-4e1e-97b5-ceeeb61bf54b" ], "Date": [ - "Sun, 02 Feb 2020 13:32:01 GMT" + "Sat, 21 Mar 2020 15:39:33 GMT" ], "Content-Length": [ - "335" + "450" ], "Content-Type": [ "application/json" @@ -886,7 +886,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sambit\",\r\n \"etag\": \"W/\\\"datetime'2019-07-19T10%3A05%3A53.2667115Z'\\\"\",\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.RecoveryServices/vaults/sambit\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sambit\",\r\n \"etag\": \"W/\\\"datetime'2019-07-19T10%3A05%3A53.2667115Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.RecoveryServices/vaults/sambit\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -896,7 +896,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9244367-d9aa-49b9-a872-ebc2c5975faa" + "4ef4b613-5f1f-40b3-b83a-0ecbad1978d3" ], "Accept-Language": [ "en-US" @@ -919,11 +919,11 @@ "nosniff" ], "x-ms-request-id": [ - "0d2abb54-4b41-49fa-8815-0f4d4c62bae9" + "850b575f-d8af-4b09-9577-f628ce7c58b3" ], "x-ms-client-request-id": [ - "e9244367-d9aa-49b9-a872-ebc2c5975faa", - "e9244367-d9aa-49b9-a872-ebc2c5975faa" + "4ef4b613-5f1f-40b3-b83a-0ecbad1978d3", + "4ef4b613-5f1f-40b3-b83a-0ecbad1978d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -935,16 +935,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-correlation-request-id": [ - "0d2abb54-4b41-49fa-8815-0f4d4c62bae9" + "850b575f-d8af-4b09-9577-f628ce7c58b3" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133202Z:0d2abb54-4b41-49fa-8815-0f4d4c62bae9" + "CENTRALUSEUAP:20200321T153934Z:850b575f-d8af-4b09-9577-f628ce7c58b3" ], "Date": [ - "Sun, 02 Feb 2020 13:32:02 GMT" + "Sat, 21 Mar 2020 15:39:33 GMT" ], "Content-Length": [ "1461" @@ -960,13 +960,13 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/DefaultPolicy?api-version=2019-06-15", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=", + "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/DefaultPolicy?api-version=2019-06-15", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "974aee49-df03-432e-964c-077d6a6f35fd" + "6de6a51c-069c-40c1-9188-47155ca044c8" ], "Accept-Language": [ "en-US" @@ -989,11 +989,11 @@ "nosniff" ], "x-ms-request-id": [ - "7125a871-527c-4d9c-a66a-d51b60a0fdf6" + "91bed845-0958-46b8-b493-5fa37fa097cd" ], "x-ms-client-request-id": [ - "974aee49-df03-432e-964c-077d6a6f35fd", - "974aee49-df03-432e-964c-077d6a6f35fd" + "6de6a51c-069c-40c1-9188-47155ca044c8", + "6de6a51c-069c-40c1-9188-47155ca044c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1005,16 +1005,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11993" ], "x-ms-correlation-request-id": [ - "7125a871-527c-4d9c-a66a-d51b60a0fdf6" + "91bed845-0958-46b8-b493-5fa37fa097cd" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133203Z:7125a871-527c-4d9c-a66a-d51b60a0fdf6" + "CENTRALUSEUAP:20200321T153935Z:91bed845-0958-46b8-b493-5fa37fa097cd" ], "Date": [ - "Sun, 02 Feb 2020 13:32:03 GMT" + "Sat, 21 Mar 2020 15:39:35 GMT" ], "Content-Length": [ "762" @@ -1026,17 +1026,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/DefaultPolicy\",\r\n \"name\": \"DefaultPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T23:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T23:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/DefaultPolicy\",\r\n \"name\": \"DefaultPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-22T01:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-22T01:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy?api-version=2016-12-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy?api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67c2184b-8eb9-4692-bc23-013975fab133" + "29e79e49-7d97-4fe4-b3e0-6b43c5aded2c" ], "Accept-Language": [ "en-US" @@ -1059,11 +1059,11 @@ "nosniff" ], "x-ms-request-id": [ - "d289a60d-2a02-421c-acdd-0eb9551c03bf" + "eea2fc04-72c8-408b-baf3-06d2a63547c7" ], "x-ms-client-request-id": [ - "67c2184b-8eb9-4692-bc23-013975fab133", - "67c2184b-8eb9-4692-bc23-013975fab133" + "29e79e49-7d97-4fe4-b3e0-6b43c5aded2c", + "29e79e49-7d97-4fe4-b3e0-6b43c5aded2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1072,16 +1072,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "d289a60d-2a02-421c-acdd-0eb9551c03bf" + "eea2fc04-72c8-408b-baf3-06d2a63547c7" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133206Z:d289a60d-2a02-421c-acdd-0eb9551c03bf" + "CENTRALUSEUAP:20200321T153938Z:eea2fc04-72c8-408b-baf3-06d2a63547c7" ], "Date": [ - "Sun, 02 Feb 2020 13:32:06 GMT" + "Sat, 21 Mar 2020 15:39:38 GMT" ], "Expires": [ "-1" @@ -1094,13 +1094,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49b6fd35-741c-424b-81f2-7333dd9cb0be-2020-02-02 13:32:07Z-P" + "53937f3f-797f-48e3-adbe-29c45e1585a0-2020-03-21 15:39:39Z-P" ], "Accept-Language": [ "en-US" @@ -1123,10 +1123,10 @@ "nosniff" ], "x-ms-request-id": [ - "934d0925-0dd7-42a4-aa31-4e09e747aa62" + "0c8b68e2-0b49-49b8-bac3-8b482ff39654" ], "x-ms-client-request-id": [ - "49b6fd35-741c-424b-81f2-7333dd9cb0be-2020-02-02 13:32:07Z-P" + "53937f3f-797f-48e3-adbe-29c45e1585a0-2020-03-21 15:39:39Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1135,19 +1135,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11990" ], "x-ms-correlation-request-id": [ - "934d0925-0dd7-42a4-aa31-4e09e747aa62" + "0c8b68e2-0b49-49b8-bac3-8b482ff39654" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133207Z:934d0925-0dd7-42a4-aa31-4e09e747aa62" + "CENTRALUSEUAP:20200321T153939Z:0c8b68e2-0b49-49b8-bac3-8b482ff39654" ], "Date": [ - "Sun, 02 Feb 2020 13:32:06 GMT" + "Sat, 21 Mar 2020 15:39:38 GMT" ], "Content-Length": [ - "363" + "478" ], "Content-Type": [ "application/json" @@ -1156,17 +1156,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV25077474\",\r\n \"etag\": \"W/\\\"datetime'2020-02-02T13%3A31%3A56.9489053Z'\\\"\",\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVa4694aff\",\r\n \"etag\": \"W/\\\"datetime'2020-03-21T15%3A39%3A28.1714167Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2016-12-01", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2016-12-01", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50c06969-0da4-420d-b8c5-78ea138eeec5" + "bfbd182e-9e57-4294-8b57-9f2e38cb2166" ], "Accept-Language": [ "en-US" @@ -1189,11 +1189,11 @@ "nosniff" ], "x-ms-request-id": [ - "5410edbc-5b19-4ed9-984f-51a8fcbeb12f" + "71e22ea8-d8d2-4e25-a041-0e0dbe401487" ], "x-ms-client-request-id": [ - "50c06969-0da4-420d-b8c5-78ea138eeec5", - "50c06969-0da4-420d-b8c5-78ea138eeec5" + "bfbd182e-9e57-4294-8b57-9f2e38cb2166", + "bfbd182e-9e57-4294-8b57-9f2e38cb2166" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1205,16 +1205,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11989" ], "x-ms-correlation-request-id": [ - "5410edbc-5b19-4ed9-984f-51a8fcbeb12f" + "71e22ea8-d8d2-4e25-a041-0e0dbe401487" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133208Z:5410edbc-5b19-4ed9-984f-51a8fcbeb12f" + "CENTRALUSEUAP:20200321T153940Z:71e22ea8-d8d2-4e25-a041-0e0dbe401487" ], "Date": [ - "Sun, 02 Feb 2020 13:32:07 GMT" + "Sat, 21 Mar 2020 15:39:40 GMT" ], "Content-Length": [ "12" @@ -1230,13 +1230,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cf5eb80-f44e-4e0c-ab97-4b1742621316-2020-02-02 13:32:08Z-P" + "c44a9f46-3d52-4580-9455-c02d592849c7-2020-03-21 15:39:40Z-P" ], "Accept-Language": [ "en-US" @@ -1259,10 +1259,10 @@ "nosniff" ], "x-ms-request-id": [ - "10216ced-e5d4-4a13-8241-f549fd7c9c81" + "e6e38367-809b-4fb2-80bf-58b39fc63f58" ], "x-ms-client-request-id": [ - "7cf5eb80-f44e-4e0c-ab97-4b1742621316-2020-02-02 13:32:08Z-P" + "c44a9f46-3d52-4580-9455-c02d592849c7-2020-03-21 15:39:40Z-P" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1271,13 +1271,13 @@ "199" ], "x-ms-correlation-request-id": [ - "10216ced-e5d4-4a13-8241-f549fd7c9c81" + "e6e38367-809b-4fb2-80bf-58b39fc63f58" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133211Z:10216ced-e5d4-4a13-8241-f549fd7c9c81" + "CENTRALUSEUAP:20200321T153944Z:e6e38367-809b-4fb2-80bf-58b39fc63f58" ], "Date": [ - "Sun, 02 Feb 2020 13:32:12 GMT" + "Sat, 21 Mar 2020 15:39:43 GMT" ], "Expires": [ "-1" @@ -1290,13 +1290,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG25077474?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRGa4694aff?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af94c9d0-96a5-4777-9e3c-ef627cfe2a9b" + "605e4e1b-ead9-4c03-ba4f-4efea4c712f3" ], "Accept-Language": [ "en-US" @@ -1305,7 +1305,7 @@ "FxVersion/4.6.28207.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" ] }, "ResponseHeaders": { @@ -1316,7 +1316,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MDc3NDc0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0E0Njk0QUZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1325,13 +1325,13 @@ "14999" ], "x-ms-request-id": [ - "c53326dc-52e6-403b-a17e-e4781bf813a0" + "c4b0fc9c-9940-4e40-976d-4b383149c31e" ], "x-ms-correlation-request-id": [ - "c53326dc-52e6-403b-a17e-e4781bf813a0" + "c4b0fc9c-9940-4e40-976d-4b383149c31e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133216Z:c53326dc-52e6-403b-a17e-e4781bf813a0" + "CENTRALUSEUAP:20200321T153949Z:c4b0fc9c-9940-4e40-976d-4b383149c31e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1340,7 +1340,7 @@ "nosniff" ], "Date": [ - "Sun, 02 Feb 2020 13:32:16 GMT" + "Sat, 21 Mar 2020 15:39:49 GMT" ], "Expires": [ "-1" @@ -1353,8 +1353,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MDc3NDc0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTURjM05EYzBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0E0Njk0QUZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEUwTmprMFFVWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1362,7 +1362,7 @@ "FxVersion/4.6.28207.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" ] }, "ResponseHeaders": { @@ -1373,22 +1373,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MDc3NDc0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0E0Njk0QUZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-request-id": [ - "ec709eda-be27-41bb-b1df-ce7ff8a52c12" + "e09db15b-d9c9-487a-ba92-35fece9ce7ea" ], "x-ms-correlation-request-id": [ - "ec709eda-be27-41bb-b1df-ce7ff8a52c12" + "e09db15b-d9c9-487a-ba92-35fece9ce7ea" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133232Z:ec709eda-be27-41bb-b1df-ce7ff8a52c12" + "CENTRALUSEUAP:20200321T154004Z:e09db15b-d9c9-487a-ba92-35fece9ce7ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1397,7 +1397,7 @@ "nosniff" ], "Date": [ - "Sun, 02 Feb 2020 13:32:31 GMT" + "Sat, 21 Mar 2020 15:40:04 GMT" ], "Expires": [ "-1" @@ -1410,8 +1410,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MDc3NDc0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTURjM05EYzBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0E0Njk0QUZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEUwTmprMFFVWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1419,7 +1419,7 @@ "FxVersion/4.6.28207.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" ] }, "ResponseHeaders": { @@ -1430,22 +1430,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MDc3NDc0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0E0Njk0QUZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11996" ], "x-ms-request-id": [ - "e17f1fc6-ed6e-491a-8de2-947361003d43" + "68fd33e6-9e69-4547-983c-9d3fc7047cb8" ], "x-ms-correlation-request-id": [ - "e17f1fc6-ed6e-491a-8de2-947361003d43" + "68fd33e6-9e69-4547-983c-9d3fc7047cb8" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133247Z:e17f1fc6-ed6e-491a-8de2-947361003d43" + "CENTRALUSEUAP:20200321T154020Z:68fd33e6-9e69-4547-983c-9d3fc7047cb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1454,7 +1454,7 @@ "nosniff" ], "Date": [ - "Sun, 02 Feb 2020 13:32:46 GMT" + "Sat, 21 Mar 2020 15:40:20 GMT" ], "Expires": [ "-1" @@ -1467,8 +1467,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MDc3NDc0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTURjM05EYzBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0E0Njk0QUZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEUwTmprMFFVWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1476,7 +1476,7 @@ "FxVersion/4.6.28207.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" ] }, "ResponseHeaders": { @@ -1487,16 +1487,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11995" ], "x-ms-request-id": [ - "817d6c47-2429-482a-b1e1-68bedd4754a5" + "06e3c034-cfad-4c57-8586-576939c3f53d" ], "x-ms-correlation-request-id": [ - "817d6c47-2429-482a-b1e1-68bedd4754a5" + "06e3c034-cfad-4c57-8586-576939c3f53d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133303Z:817d6c47-2429-482a-b1e1-68bedd4754a5" + "CENTRALUSEUAP:20200321T154036Z:06e3c034-cfad-4c57-8586-576939c3f53d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1505,7 +1505,7 @@ "nosniff" ], "Date": [ - "Sun, 02 Feb 2020 13:33:02 GMT" + "Sat, 21 Mar 2020 15:40:36 GMT" ], "Expires": [ "-1" @@ -1518,8 +1518,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MDc3NDc0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTURjM05EYzBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0E0Njk0QUZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEUwTmprMFFVWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1527,7 +1527,7 @@ "FxVersion/4.6.28207.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" ] }, "ResponseHeaders": { @@ -1538,16 +1538,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11994" ], "x-ms-request-id": [ - "a62ba1d8-00a2-4113-8329-b6fb17d129f4" + "9b96b858-aa71-4fc6-8876-7d47caded49b" ], "x-ms-correlation-request-id": [ - "a62ba1d8-00a2-4113-8329-b6fb17d129f4" + "9b96b858-aa71-4fc6-8876-7d47caded49b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20200202T133304Z:a62ba1d8-00a2-4113-8329-b6fb17d129f4" + "CENTRALUSEUAP:20200321T154036Z:9b96b858-aa71-4fc6-8876-7d47caded49b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1556,7 +1556,7 @@ "nosniff" ], "Date": [ - "Sun, 02 Feb 2020 13:33:04 GMT" + "Sat, 21 Mar 2020 15:40:36 GMT" ], "Expires": [ "-1" @@ -1572,6 +1572,6 @@ "Names": {}, "Variables": { "SubscriptionId": "38304e13-357e-405e-9e9a-220351dcce8c", - "NamingSuffix": "25077474-0a00-4db2-ac04-7a03d0c439f3" + "NamingSuffix": "a4694aff-cec8-4576-bd51-df62f7678947" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProtectionPolicy.md b/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProtectionPolicy.md index 03f770f61a1b..6f7c581bbe18 100644 --- a/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProtectionPolicy.md +++ b/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProtectionPolicy.md @@ -43,6 +43,8 @@ PS C:\> $SchPol.ScheduleRunTimes.Add($DT.ToUniversalTime()) PS C:\> $RetPol = Get-AzRecoveryServicesBackupRetentionPolicyObject -WorkloadType "AzureVM" PS C:\> $RetPol.DailySchedule.DurationCountInDays = 365 PS C:\> $Pol = Get-AzRecoveryServicesBackupProtectionPolicy -Name "NewPolicy" +PS C:\> $Pol.AzureBackupRGName = "RG_prefix" +PS C:\> $Pol.AzureBackupRGNameSuffix = "RG_suffix" PS C:\> Set-AzRecoveryServicesBackupProtectionPolicy -Policy $Pol -SchedulePolicy $SchPol -RetentionPolicy $RetPol ``` @@ -53,6 +55,7 @@ The fourth command adds the date and time in $DT to the schedule run time for th The fifth command gets a base retention policy object, and then stores it in the $RetPol variable. The sixth command sets the retention duration to 365 days. The seventh command gets the Backup protection policy named NewPolicy, and then stores it in the $Pol variable. +The eighth and ninth sets the resource group parameters associated with policy which stores the restore points. The final command modifies the Backup protection policy in $Pol using schedule policy in $SchPol and the retention policy in $RetPol. ## PARAMETERS From 279bb695d5b722add145fc0aafaa8959499b622f Mon Sep 17 00:00:00 2001 From: Sambit Rath Date: Sat, 21 Mar 2020 21:17:10 +0530 Subject: [PATCH 2/2] updated changelog --- src/RecoveryServices/RecoveryServices/ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/RecoveryServices/RecoveryServices/ChangeLog.md b/src/RecoveryServices/RecoveryServices/ChangeLog.md index c5b795107199..25113afdf347 100644 --- a/src/RecoveryServices/RecoveryServices/ChangeLog.md +++ b/src/RecoveryServices/RecoveryServices/ChangeLog.md @@ -23,6 +23,7 @@ * Azure Backup added support for retrying policy update for failed items. * Azure Backup Added support for disk exclusion settings during backup and restore. * Azure Backup Added Support for Restoring Multiple files/folders in AzureFileShare +* Azure Backup Added support for User-specified Resourcegroup support while updating IaasVM Policy ## Version 2.7.0 * Added Support for Restore-as-files for SQL Databases.